(key: Key)
| 1474 | getWithMetadata<Metadata = unknown>(key: Array<Key>, options?: KVNamespaceGetOptions<"text">): Promise<Map<string, KVNamespaceGetWithMetadataResult<string, Metadata>>>; |
| 1475 | getWithMetadata<ExpectedValue = unknown, Metadata = unknown>(key: Array<Key>, options?: KVNamespaceGetOptions<"json">): Promise<Map<string, KVNamespaceGetWithMetadataResult<ExpectedValue, Metadata>>>; |
| 1476 | delete(key: Key): Promise<void>; |
| 1477 | } |
| 1478 | interface KVNamespaceListOptions { |
| 1479 | limit?: number; |