(key: Key, options?: Partial<KVNamespaceGetOptions<undefined>>)
| 2054 | }; |
| 2055 | interface KVNamespace<Key extends string = string> { |
| 2056 | get(key: Key, options?: Partial<KVNamespaceGetOptions<undefined>>): Promise<string | null>; |
| 2057 | get(key: Key, type: "text"): Promise<string | null>; |
| 2058 | get<ExpectedValue = unknown>(key: Key, type: "json"): Promise<ExpectedValue | null>; |
| 2059 | get(key: Key, type: "arrayBuffer"): Promise<ArrayBuffer | null>; |
no outgoing calls