Skip to content

Commit

Permalink
feat: add open and close methods to db format
Browse files Browse the repository at this point in the history
  • Loading branch information
Galeaf11 committed Mar 11, 2024
1 parent 7032bf4 commit 118765c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/storage/src/abstract.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ export abstract class Storage {
abstract entries<CustomValueType = unknown>():
| IterableIterator<[string, CustomValueType]>
| Promise<[string, CustomValueType][]>;
abstract open(): Promise<void>
abstract close(): Promise<void>
abstract open(): Promise<void>;
abstract close(): Promise<void>;
}

export interface GenericStorageOptions {
Expand Down

0 comments on commit 118765c

Please sign in to comment.