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