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