@nativescript/core
Version:
A JavaScript library providing an easy to use api for interacting with iOS and Android platform APIs.
10 lines (9 loc) • 392 B
TypeScript
/**
* Keys under which NativeScript stores its callbacks object and frame id on native
* activity and fragment instances.
*
* They live in a module with no imports of its own so code outside `ui/frame` can read
* them without pulling in the frame implementation, which closes a require cycle.
*/
export declare const FRAMEID = "_frameId";
export declare const CALLBACKS = "_callbacks";