UNPKG

@picoxr/web-cli-core

Version:

Core Library to generate, build and sign TWA projects

14 lines (13 loc) 428 B
type ErrorType = 'info' | 'warning' | 'error'; type ErrorMessageItem = { code: number; message: string; tag?: string; message_staring_params: Record<string, any>; }; declare class CustomError extends Error { type: ErrorType; customMessage: ErrorMessageItem | Array<ErrorMessageItem>; constructor(customMessage: ErrorMessageItem | Array<ErrorMessageItem>, type?: ErrorType); } export { CustomError };