Unverified Commit 0ba9a3f5 authored by Hong Minhee's avatar Hong Minhee
Browse files

Combine import statements in kv.md documentation

parent 2ce6a424
Loading
Loading
Loading
Loading
+7 −2
Original line number Diff line number Diff line
@@ -702,8 +702,13 @@ whose keys start with a given prefix. This is useful for implementing
batch operations or iterating over related entries.

~~~~ typescript twoslash
import type { KvStore, KvKey, KvStoreSetOptions } from "@fedify/fedify";
import type { KvStoreListEntry } from "@fedify/fedify";
import type {
  KvKey,
  KvStore,
  KvStoreListEntry,
  KvStoreSetOptions,
} from "@fedify/fedify";

/**
 * A hypothetical storage interface.
 */