Skip to content
Snippets Groups Projects
index.d.ts 162 B
declare class GeneralError extends Error {
    constructor(message: string);
}
declare class AppError extends GeneralError {
}
export { GeneralError, AppError };