(key: Key, options?: Partial<KVNamespaceGetOptions<undefined>>)
| 1429 | }; |
| 1430 | interface KVNamespace<Key extends string = string> { |
| 1431 | get(key: Key, options?: Partial<KVNamespaceGetOptions<undefined>>): Promise<string | null>; |
| 1432 | get(key: Key, type: "text"): Promise<string | null>; |
| 1433 | get<ExpectedValue = unknown>(key: Key, type: "json"): Promise<ExpectedValue | null>; |
| 1434 | get(key: Key, type: "arrayBuffer"): Promise<ArrayBuffer | null>; |
no outgoing calls
no test coverage detected