diff --git a/packages/interface-datastore/src/index.ts b/packages/interface-datastore/src/index.ts index 7dffd133..c6360bf7 100644 --- a/packages/interface-datastore/src/index.ts +++ b/packages/interface-datastore/src/index.ts @@ -11,7 +11,7 @@ export interface Pair { value: Uint8Array } -export interface Batch { +export interface Batch { put: (key: Key, value: Uint8Array) => void delete: (key: Key) => void commit: (options?: AbortOptions & BatchOptionsExtension) => Await