You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
399 B
13 lines
399 B
5 months ago
|
export interface ErrorCodes {
|
||
|
[key: number]: {
|
||
|
file: string;
|
||
|
condition?: string;
|
||
|
message?: string;
|
||
|
};
|
||
|
}
|
||
|
export declare const errorCodes: ErrorCodes;
|
||
|
export declare const devDebug: ErrorCodes;
|
||
|
export declare const devLog: ErrorCodes;
|
||
|
export declare const devWarn: ErrorCodes;
|
||
|
export declare const devError: ErrorCodes;
|
||
|
//# sourceMappingURL=invariantErrorCodes.d.ts.map
|