Skip to content
This repository was archived by the owner on Apr 8, 2020. It is now read-only.

Commit 958f83c

Browse files
committedJul 30, 2016
add local version of typings
·
v0.13.3v0.10.10
1 parent de65aa2 commit 958f83c

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+21000
-1
lines changed
 

‎src/typings.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/// <reference path="../node_modules/core-coderoad/src/typings/index.d.ts" />
1+
/// <reference path="./typings/index.d.ts" />
22
// load typings from core-coderoad
33
// this requires that the module be declared first
44
declare module 'core-coderoad';
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
// Type definitions for assertion-error 1.0.0
2+
// Project: https://github.com/chaijs/assertion-error
3+
// Definitions by: Bart van der Schoor <https://github.com/Bartvds>
4+
// Definitions: https://github.com/borisyankov/DefinitelyTyped
5+
6+
declare module 'assertion-error' {
7+
class AssertionError implements Error {
8+
constructor(message: string, props?: any, ssf?: Function);
9+
name: string;
10+
message: string;
11+
showDiff: boolean;
12+
stack: string;
13+
}
14+
export = AssertionError;
15+
}

0 commit comments

Comments
 (0)
This repository has been archived.