Add API ref comments.

This commit is contained in:
atanasovg
2016-06-13 11:10:15 +03:00
parent ef0577ed56
commit 2740be2b05

View File

@ -122,8 +122,14 @@ declare module "ui/frame" {
on(event: "optionSelected", callback: (args: observable.EventData) => void, thisArg?: any);
}
/**
* Gets the default AndroidActivityCallbacks implementation, used to bridge Activity events to the Frame and navigation routine. This field is initialized only for the Android platform.
*/
export var activityCallbacks: AndroidActivityCallbacks;
/**
* Sets the extended android.app.Fragment class to the Frame and navigation routine. An instance of this class will be created to represent the Page currently visible on the srceen. This method is available only for the Android platform.
*/
export function setFragmentClass(clazz: any): void;
/**