We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7032bf4 commit 118765cCopy full SHA for 118765c
packages/storage/src/abstract.ts
@@ -13,8 +13,8 @@ export abstract class Storage {
13
abstract entries<CustomValueType = unknown>():
14
| IterableIterator<[string, CustomValueType]>
15
| Promise<[string, CustomValueType][]>;
16
- abstract open(): Promise<void>
17
- abstract close(): Promise<void>
+ abstract open(): Promise<void>;
+ abstract close(): Promise<void>;
18
}
19
20
export interface GenericStorageOptions {
0 commit comments