abstracted-firebase
Version:
Core functional library supporting 'abstracted-admin' and 'abstracted-client'
12 lines (11 loc) • 332 B
TypeScript
export declare class AbstractedError extends Error {
code: string;
constructor(
/** a human friendly error message */
message: string,
/**
* either of the syntax `type/subType` or alternatively just
* `subType` where type will be defaulted to **abstracted-firebase**
*/
errorCode: string);
}