summary refs log tree commit diff
path: root/src/util/Storage.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/util/Storage.ts')
-rw-r--r--src/util/Storage.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/util/Storage.ts b/src/util/Storage.ts

index ad00fbb7..391afa83 100644 --- a/src/util/Storage.ts +++ b/src/util/Storage.ts
@@ -1,8 +1,8 @@ import { FileStorage } from "./FileStorage"; export interface Storage { - set(hash: string, data: any, prefix?: string): Promise<void>; - get(hash: string, prefix?: string): Promise<any>; + set(path: string, data: any): Promise<void>; + get(path: string): Promise<any>; } var storage: Storage;