From 2740be2b05ba29a68ad7f2e9b153cd78d54159b8 Mon Sep 17 00:00:00 2001 From: atanasovg Date: Mon, 13 Jun 2016 11:10:15 +0300 Subject: [PATCH] Add API ref comments. --- tns-core-modules/ui/frame/frame.d.ts | 6 ++++++ 1 file changed, 6 insertions(+) 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; /**