(key: Key, options?: Partial<KVNamespaceGetOptions<undefined>>)
| 1476 | }; |
| 1477 | interface KVNamespace<Key extends string = string> { |
| 1478 | get(key: Key, options?: Partial<KVNamespaceGetOptions<undefined>>): Promise<string | null>; |
| 1479 | get(key: Key, type: "text"): Promise<string | null>; |
| 1480 | get<ExpectedValue = unknown>(key: Key, type: "json"): Promise<ExpectedValue | null>; |
| 1481 | get(key: Key, type: "arrayBuffer"): Promise<ArrayBuffer | null>; |
no outgoing calls
no test coverage detected