| 12254 | export = CloudflareWorkersModule; |
| 12255 | } |
| 12256 | interface SecretsStoreSecret { |
| 12257 | /** |
| 12258 | * Get a secret from the Secrets Store, returning a string of the secret value |
| 12259 | * if it exists, or throws an error if it does not exist |
| 12260 | */ |
| 12261 | get(): Promise<string>; |
| 12262 | } |
| 12263 | declare module "cloudflare:sockets" { |
| 12264 | function _connect(address: string | SocketAddress, options?: SocketOptions): Socket; |
| 12265 | export { _connect as connect }; |
nothing calls this directly
no outgoing calls
no test coverage detected