| 45 | // tslint:enable:max-line-length |
| 46 | |
| 47 | export interface AppLaunchView extends LayoutBase { |
| 48 | // called when the animation is to begin |
| 49 | startAnimation?: () => void; |
| 50 | // called when bootstrap is complete and cleanup can begin |
| 51 | // should resolve when animation is completely finished |
| 52 | cleanup?: () => Promise<any>; |
| 53 | } |
| 54 | |
| 55 | export interface AppOptions { |
| 56 | bootInExistingPage?: boolean; |
nothing calls this directly
no outgoing calls
no test coverage detected