(app: any | null)
| 85 | // last mounted app instance |
| 86 | let CURRENT_APP: any | null = null; |
| 87 | export function setCurrentApp(app: any | null) { |
| 88 | CURRENT_APP = app; |
| 89 | } |
| 90 | export function getCurrentApp(): any | null { |
| 91 | return CURRENT_APP; |
| 92 | } |
no outgoing calls
no test coverage detected