| 24 | } |
| 25 | |
| 26 | export interface RuntimeNodeHttpServer { |
| 27 | runtime: RuntimeServer |
| 28 | httpServer: http.Server |
| 29 | url: string |
| 30 | close(): Promise<void> |
| 31 | } |
| 32 | |
| 33 | function rawText(data: RawData): string { |
| 34 | if (typeof data === "string") return data |
no outgoing calls
no test coverage detected