(waveEnv: WaveEnv, service: string, method: string, args: any[], noUIContext?: boolean)
| 7 | import type { WaveEnv } from "@/app/waveenv/waveenv"; |
| 8 | |
| 9 | function callBackendService(waveEnv: WaveEnv, service: string, method: string, args: any[], noUIContext?: boolean): Promise<any> { |
| 10 | if (waveEnv != null) { |
| 11 | return waveEnv.callBackendService(service, method, args, noUIContext) |
| 12 | } |
| 13 | return WOS.callBackendService(service, method, args, noUIContext); |
| 14 | } |
| 15 | |
| 16 | // blockservice.BlockService (block) |
| 17 | export class BlockServiceType { |
no outgoing calls
no test coverage detected