(comlink: any)
| 87 | } |
| 88 | |
| 89 | export function initializer(comlink: any) { |
| 90 | initAxios(comlink.store); |
| 91 | |
| 92 | if (getBrowserDatabusApiEnabled()) { |
| 93 | WasmApi.initializeDatabusWasm().then((r) => {}); |
| 94 | } else { |
| 95 | console.log('web assembly is not supported'); |
| 96 | } |
| 97 | |
| 98 | window.__global_handle_response = handleResponse; |
| 99 | |
| 100 | // Initialisation Field.bindModel |
| 101 | injectStore(comlink.store); |
| 102 | initCronjobs(comlink.store); |
| 103 | initDayjs(comlink); |
| 104 | |
| 105 | initBugTracker(); |
| 106 | } |
| 107 |
no test coverage detected