UNPKG

typescript-closure-tools

Version:

Command-line tools to convert closure-style JSDoc annotations to typescript, and to convert typescript sources to closure externs files

16 lines (14 loc) 473 B
// Type definitions for assertion-error 1.0 0 // Project: https://github.com/chaijs/assertion-error // Definitions by: Bart van der Schoor <https://github.com/Bartvds> // Definitions: https://github.com/borisyankov/DefinitelyTyped declare module 'assertion-error' { class AssertionError implements Error { constructor(message: string, props?: any, ssf?: Function); name: string; message: string; showDiff: boolean; stack: string; } export = AssertionError; }