| 77 | * Sandbox handler interface for script execution |
| 78 | */ |
| 79 | export interface SandboxHandler { |
| 80 | handleSandboxRequest( |
| 81 | spaceId: string, |
| 82 | url: URL, |
| 83 | context: any |
| 84 | ): Promise<Response> |
| 85 | } |
| 86 | |
| 87 | /** |
| 88 | * Function to create a sandbox handler |
no outgoing calls
no test coverage detected