UNPKG

347 BTypeScriptView Raw
1import { FrameBase } from './frame-common';
2export declare const frameStack: Array<FrameBase>;
3export declare function topmost(): FrameBase;
4export declare function _pushInFrameStack(frame: FrameBase): void;
5export declare function _popFromFrameStack(frame: FrameBase): void;
6export declare function _removeFromFrameStack(frame: FrameBase): void;