Skip to content

Commit 596c39a

Browse files
committed
added missing types in references.d.t.s
1 parent bbcae74 commit 596c39a

File tree

2 files changed

+18
-13
lines changed

2 files changed

+18
-13
lines changed

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,14 +37,14 @@
3737
"@angular/platform-browser": "2.2.1",
3838
"@angular/platform-browser-dynamic": "2.2.1",
3939
"@angular/router": "3.2.1",
40-
"nativescript-intl": "~0.0.6",
4140
"nativescript-angular": "1.2.0",
4241
"nativescript-camera": "0.0.7",
4342
"nativescript-geolocation": "0.0.14",
4443
"nativescript-googlemaps": "0.0.6",
44+
"nativescript-intl": "~0.0.6",
4545
"nativescript-theme-core": "^1.0.0",
46-
"rxjs": "5.0.0-beta.12",
4746
"reflect-metadata": "~0.1.8",
47+
"rxjs": "5.0.0-beta.12",
4848
"tns-core-modules": "next"
4949
},
5050
"devDependencies": {
@@ -103,4 +103,4 @@
103103
"build-android-bundle": "tns build android --bundle --disable-npm-install",
104104
"build-ios-bundle": "tns build ios --bundle --disable-npm-install"
105105
}
106-
}
106+
}

references.d.ts

Lines changed: 15 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -3,19 +3,24 @@
33
/// <reference path="./node_modules/tns-platform-declarations/ios.d.ts" />
44
/// <reference path="./node_modules/tns-platform-declarations/android.d.ts" />
55

6-
declare type Location = any;
7-
declare type Node = any;
6+
declare type Comment = any;
7+
declare type CloseEvent = any;
88
declare type Document = any;
9+
declare type DocumentFragment = any;
10+
declare type Element = any;
911
declare type History = any;
12+
declare type HTMLAnchorElement = any;
13+
declare type HTMLCollection = any;
14+
declare type HTMLDocument = any;
1015
declare type HTMLElement = any;
16+
declare type HTMLInputElement = any;
17+
declare type HTMLScriptElement = any;
1118
declare type HTMLStyleElement = any;
1219
declare type KeyboardEvent = any;
13-
declare type Element = any;
14-
declare type DocumentFragment = any;
15-
declare type Text = any;
16-
declare type HTMLDocument = any;
17-
declare type HTMLAnchorElement = any;
18-
declare type Comment = any;
20+
declare type Location = any;
21+
declare type MessageEvent = any;
1922
declare type MouseEvent = any;
20-
declare type HTMLInputElement = any;
21-
declare type HTMLScriptElement = any;
23+
declare type Node = any;
24+
declare type NodeList = any;
25+
declare type Text = any;
26+
declare type WebSocket = any;

0 commit comments

Comments
 (0)