mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
19 lines
556 B
TypeScript
19 lines
556 B
TypeScript
// Type definitions for empower 1.2.1
|
|
// Project: https://github.com/twada/empower
|
|
// Definitions by: vvakame <https://github.com/vvakame>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
declare function empower(originalAssert:any, formatter:any, options?:empower.Options):any;
|
|
|
|
export = empower;
|
|
export as namespace empower;
|
|
|
|
declare namespace empower {
|
|
export interface Options {
|
|
destructive?: boolean;
|
|
modifyMessageOnRethrow?: boolean;
|
|
saveContextOnRethrow?: boolean;
|
|
patterns?: string[];
|
|
}
|
|
}
|