Skip to content

Commit 118765c

Browse files
committed
feat: add open and close methods to db format
1 parent 7032bf4 commit 118765c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/storage/src/abstract.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ export abstract class Storage {
1313
abstract entries<CustomValueType = unknown>():
1414
| IterableIterator<[string, CustomValueType]>
1515
| Promise<[string, CustomValueType][]>;
16-
abstract open(): Promise<void>
17-
abstract close(): Promise<void>
16+
abstract open(): Promise<void>;
17+
abstract close(): Promise<void>;
1818
}
1919

2020
export interface GenericStorageOptions {

0 commit comments

Comments
 (0)