(key: Key, options?: Partial<KVNamespaceGetOptions<undefined>>)
| 1444 | }; |
| 1445 | interface KVNamespace<Key extends string = string> { |
| 1446 | get(key: Key, options?: Partial<KVNamespaceGetOptions<undefined>>): Promise<string | null>; |
| 1447 | get(key: Key, type: "text"): Promise<string | null>; |
| 1448 | get<ExpectedValue = unknown>(key: Key, type: "json"): Promise<ExpectedValue | null>; |
| 1449 | get(key: Key, type: "arrayBuffer"): Promise<ArrayBuffer | null>; |
no outgoing calls
no test coverage detected