UNPKG

1.24 kBTypeScriptView Raw
1export declare class InternalError extends Error {
2 private _nativeError;
3 constructor(message: string);
4 message: string;
5 name: string;
6 stack: any;
7 toString(): string;
8}
9export declare class InvalidConfigError extends Error {
10 private readonly _nativeError;
11 constructor(message: string);
12 message: string;
13 name: string;
14 stack: any;
15 toString(): string;
16}
17export declare class InvalidOptionError extends Error {
18 private _nativeError;
19 constructor(message: string);
20 message: string;
21 name: string;
22 stack: any;
23 toString(): string;
24}
25export declare class TypescriptCompileError extends Error {
26 private _nativeError;
27 constructor(message: string);
28 message: string;
29 name: string;
30 stack: any;
31 toString(): string;
32}
33export declare class UglifyError extends Error {
34 private _nativeError;
35 constructor(message: string);
36 message: string;
37 name: string;
38 stack: any;
39 toString(): string;
40}
41export declare class UnSupportedStyleExtError extends Error {
42 private _nativeError;
43 constructor(message: string);
44 message: string;
45 name: string;
46 stack: any;
47 toString(): string;
48}