Skip to content

Commit 1b48791

Browse files
committed
(#3) Custom typings for our application.
1 parent ae2924b commit 1b48791

File tree

4 files changed

+1032
-0
lines changed

4 files changed

+1032
-0
lines changed

src/typings/_custom.d.ts

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
/*
2+
* Our custom types
3+
*/
4+
/// <reference path="browser.d.ts" />
5+
/// <reference path="ng2.d.ts" />
6+
/// <reference path="webpack.d.ts" />
7+
8+
9+
/*
10+
* tsd generated types
11+
*/
12+
/// <reference path="../../tsd_typings/tsd.d.ts" />

src/typings/browser.d.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
interface ObjectConstructor {
2+
assign(target: any, ...sources: any[]): any;
3+
observe(target: any, callback: Function, acceptList?: Array<any>): void;
4+
}

0 commit comments

Comments
 (0)