mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-11-05 13:26:48 +08:00
npm scripts for typechecking public .d.ts-es and running tslint (#2934)
* npm scripts for typechecking public .d.ts-es and running tslint * Update test.ts
This commit is contained in:
committed by
Vladimir Enchev
parent
fd23197851
commit
05cd636fc8
@@ -34,4 +34,3 @@ if (global.TNS_WEBPACK) {
|
||||
global.registerModule("ui/text-view", () => require("ui/text-view"))
|
||||
global.registerModule("ui/time-picker", () => require("ui/time-picker"))
|
||||
}
|
||||
|
||||
|
||||
@@ -8,4 +8,3 @@ declare module "js-libs/easysax" {
|
||||
public angularSyntax: boolean;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
1
tns-core-modules/text/text.d.ts
vendored
1
tns-core-modules/text/text.d.ts
vendored
@@ -37,4 +37,3 @@ declare module "text" {
|
||||
export var UTF_8: any;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -1,6 +1,4 @@
|
||||
/**
|
||||
* iOS specific timer functions implementation.
|
||||
*/
|
||||
//iOS specific timer functions implementation.
|
||||
var timeoutCallbacks = new Map<number, KeyValuePair<NSTimer, TimerTargetImpl>>();
|
||||
var timerId = 0;
|
||||
|
||||
|
||||
@@ -64,7 +64,6 @@ export function write(message: any, category: string, type?: number) {
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
for (i = 0; i < _writers.length; i++) {
|
||||
_writers[i].write(message, category, type);
|
||||
}
|
||||
|
||||
@@ -535,7 +535,6 @@ namespace xml2ui {
|
||||
sourceTracker: this.sourceTracker
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
} else {
|
||||
|
||||
|
||||
@@ -527,4 +527,3 @@ export function goBack(): boolean {
|
||||
export function stack(): Array<definition.Frame> {
|
||||
return frameStack;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user