(oref: string)
| 89 | } |
| 90 | |
| 91 | function wpsSubscribeToObject(oref: string): () => void { |
| 92 | return waveEventSubscribeSingle({ |
| 93 | eventType: "waveobj:update", |
| 94 | scope: oref, |
| 95 | handler: (event) => { |
| 96 | updateWaveObject(event.data); |
| 97 | }, |
| 98 | }); |
| 99 | } |
| 100 | |
| 101 | function callBackendService(service: string, method: string, args: any[], noUIContext?: boolean): Promise<any> { |
| 102 | const startTs = Date.now(); |
nothing calls this directly
no test coverage detected