(source: string, options?: Record<string, unknown>)
| 252 | interface UnderlyingRuntime { |
| 253 | // biome-ignore lint/suspicious/noExplicitAny: bridges local and RPC overload sets |
| 254 | exec(source: string, options?: Record<string, unknown>): Promise<any>; |
| 255 | // biome-ignore lint/suspicious/noExplicitAny: bridges local and RPC overload sets |
| 256 | getExec(id: string, options?: Record<string, unknown>): Promise<any>; |
| 257 | killExec(id: string, options?: RuntimeKillOptions): Promise<void>; |
no outgoing calls