lint errors fixed

This commit is contained in:
Vladimir Enchev
2015-07-01 11:28:48 +03:00
parent 9829bb72e3
commit 8565700c8c
3 changed files with 0 additions and 3 deletions

View File

@ -2,7 +2,6 @@
import dts = require("application"); import dts = require("application");
import frame = require("ui/frame"); import frame = require("ui/frame");
import types = require("utils/types"); import types = require("utils/types");
import observable = require("data/observable");
// merge the exports of the application_common file with the exports of this file // merge the exports of the application_common file with the exports of this file
declare var exports; declare var exports;

View File

@ -3,7 +3,6 @@
*/ */
declare module "application" { declare module "application" {
import cssSelector = require("ui/styling/css-selector"); import cssSelector = require("ui/styling/css-selector");
import observable = require("data/observable");
/** /**
* An extended JavaScript Error which will have the nativeError property initialized in case the error is caused by executing platform-specific code. * An extended JavaScript Error which will have the nativeError property initialized in case the error is caused by executing platform-specific code.

View File

@ -96,5 +96,4 @@ application.on(application.androidSaveActivityStateEvent, function (args: applic
console.log("Event: " + args.eventName + ", Activity: " + args.activity + ", Bundle: " + args.bundle); console.log("Event: " + args.eventName + ", Activity: " + args.activity + ", Bundle: " + args.bundle);
}); });
application.start(); application.start();