Files

6 lines
194 B
TypeScript
Raw Permalink Normal View History

2022-12-27 12:05:56 +01:00
export declare const DYNAMIC_ERROR_CODE = "DYNAMIC_SERVER_USAGE";
export declare class DynamicServerError extends Error {
digest: typeof DYNAMIC_ERROR_CODE;
constructor(type: string);
}