ts-base-error
Version:
TypeScript Base Extendible Error
10 lines • 387 B
TypeScript
/**
* General APP Error.
* @see https://github.com/Microsoft/TypeScript/wiki/Breaking-Changes#extending-built-ins-like-error-array-and-map-may-no-longer-work
* @see https://stackoverflow.com/a/55066280/717267
* @see https://stackoverflow.com/a/60250733/717267
*/
export default class BaseError extends Error {
constructor(message?: string);
}
//# sourceMappingURL=index.d.ts.map