diff --git a/tns-core-modules/ui/frame/frame.d.ts b/tns-core-modules/ui/frame/frame.d.ts index 694b73e4d..7e9656289 100644 --- a/tns-core-modules/ui/frame/frame.d.ts +++ b/tns-core-modules/ui/frame/frame.d.ts @@ -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; /**