* Register an object with methods (for namespaced tools like mux.bash). * Each method on the object becomes callable from the sandbox.
(name: string, obj: Record<string, (...args: unknown[]) => Promise<unknown>>)
| 40 | * Each method on the object becomes callable from the sandbox. |
| 41 | */ |
| 42 | registerObject(name: string, obj: Record<string, (...args: unknown[]) => Promise<unknown>>): void; |
| 43 | |
| 44 | /** |
| 45 | * Set memory/CPU limits for the sandbox. |
no outgoing calls
no test coverage detected