UNPKG

@foxpage/foxpage-node-sdk

Version:

foxpage node sdk

13 lines (12 loc) 466 B
import { FoxpageStatus } from './enum'; import { IFoxpageErrorType } from './interface'; export type NotFoundModuleDSLErrorDetail = { pageId?: string; }; export declare const NotFoundModuleDSLErrorCode = "NOT_FOUND_MODULE_DSL_EXCEPTION"; export declare class NotFoundModuleDSLError extends Error implements IFoxpageErrorType { code: string; detail: NotFoundModuleDSLErrorDetail; status: FoxpageStatus; constructor(pageId: string, msg: string); }