diff --git a/src/storage/ETHStorage.ts b/src/storage/ETHStorage.ts index fbe0d8e..8eb54fb 100644 --- a/src/storage/ETHStorage.ts +++ b/src/storage/ETHStorage.ts @@ -19,7 +19,7 @@ export class ETHStorage implements Storage { throw new Error("Method not implemented."); } - async delete(path: string): Promise { + async delete(path: string): Promise { throw new Error("Method not implemented."); } async download(path: string): Promise<[Status, Buffer]> { diff --git a/src/storage/storage.ts b/src/storage/storage.ts index 5077d45..828b97d 100644 --- a/src/storage/storage.ts +++ b/src/storage/storage.ts @@ -16,7 +16,7 @@ export interface Storage { download(path: string): Promise<[Status, Buffer]> upload(path: string, file: Buffer): Promise - delete(path: string): Promise + delete(path: string): Promise listRefs(): Promise addRefs(refs: Ref[]): Promise delRefs(refs: Ref[]): Promise