UNPKG

@nativescript/core

Version:

A JavaScript library providing an easy to use api for interacting with iOS and Android platform APIs.

8 lines (7 loc) 402 B
import { FrameBase } from './frame-common'; export declare const frameStack: Array<FrameBase>; export declare function topmost(): FrameBase; export declare function _isFrameStackEmpty(): boolean; export declare function _pushInFrameStack(frame: FrameBase): void; export declare function _popFromFrameStack(frame: FrameBase): void; export declare function _removeFromFrameStack(frame: FrameBase): void;