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.
33 lines
800 B
33 lines
800 B
3 years ago
|
/// <reference types="node" />
|
||
|
declare const g: typeof globalThis | NodeJS.Global;
|
||
|
declare class AssertionError extends g.Error {
|
||
|
generatedMessage: any;
|
||
|
name: any;
|
||
|
code: any;
|
||
|
actual: any;
|
||
|
expected: any;
|
||
|
operator: any;
|
||
|
constructor(options: any);
|
||
|
}
|
||
|
declare function message(key: any, args: any): any;
|
||
|
declare function E(sym: any, val: any): void;
|
||
|
export declare const Error: {
|
||
|
new (key: any, ...args: any[]): {
|
||
|
[x: string]: any;
|
||
|
};
|
||
|
[x: string]: any;
|
||
|
};
|
||
|
export declare const TypeError: {
|
||
|
new (key: any, ...args: any[]): {
|
||
|
[x: string]: any;
|
||
|
};
|
||
|
[x: string]: any;
|
||
|
};
|
||
|
export declare const RangeError: {
|
||
|
new (key: any, ...args: any[]): {
|
||
|
[x: string]: any;
|
||
|
};
|
||
|
[x: string]: any;
|
||
|
};
|
||
|
export { message, AssertionError, E, };
|