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