(frame: any | null)
| 94 | // last known root Frame |
| 95 | let ROOT_FRAME: any | null = null; |
| 96 | export function setRootFrame(frame: any | null) { |
| 97 | ROOT_FRAME = frame; |
| 98 | } |
| 99 | export function getRootFrame(): any | null { |
| 100 | return ROOT_FRAME; |
| 101 | } |
no outgoing calls
no test coverage detected