(message: string)
| 46 | const ACCOUNT = process.env.CLOUDFLARE_ACCOUNT_ID ?? ""; |
| 47 | |
| 48 | const fail = (message: string): never => { |
| 49 | process.stderr.write(`${message}\n`); |
| 50 | process.exit(1); |
| 51 | }; |
| 52 | |
| 53 | interface CfFetchResult { |
| 54 | readonly ok: boolean; |
no outgoing calls
no test coverage detected