Added application module tests.

This commit is contained in:
atanasovg
2014-05-16 18:29:56 +03:00
parent c81860aaf8
commit d9a7a98358
7 changed files with 50 additions and 7 deletions

View File

@ -60,7 +60,7 @@ export declare class AndroidApplication {
/**
* The main (start) Activity for the application.
*/
public mainActivity: android.app.Activity;
public startActivity: android.app.Activity;
/**
* The name of the application package.
@ -117,6 +117,11 @@ export declare class iOSApplication {
* The root view controller for the application.
*/
public rootController: UIKit.UIViewController;
/**
* The android.app.Application object instance provided to the init of the module.
*/
public nativeApp: UIKit.UIApplication;
}
/**