(code: ZrUiErrorCode, detail: string)
| 21 | |
| 22 | export function createAppGuards(options: CreateAppGuardsOptions): AppGuards { |
| 23 | function throwCode(code: ZrUiErrorCode, detail: string): never { |
| 24 | throw new ZrUiError(code, detail); |
| 25 | } |
| 26 | |
| 27 | function assertOperational(method: string): void { |
| 28 | const st = options.getRuntimeState(); |
no outgoing calls
no test coverage detected