| 12623 | export = CloudflareWorkersModule; |
| 12624 | } |
| 12625 | interface SecretsStoreSecret { |
| 12626 | /** |
| 12627 | * Get a secret from the Secrets Store, returning a string of the secret value |
| 12628 | * if it exists, or throws an error if it does not exist |
| 12629 | */ |
| 12630 | get(): Promise<string>; |
| 12631 | } |
| 12632 | declare module "cloudflare:sockets" { |
| 12633 | function _connect(address: string | SocketAddress, options?: SocketOptions): Socket; |
| 12634 | export { _connect as connect }; |
nothing calls this directly
no outgoing calls
no test coverage detected