fix(core): update

This commit is contained in:
2024-04-24 18:02:21 +02:00
parent a301d67bda
commit b538f72004
10 changed files with 219 additions and 44 deletions

View File

@@ -36,7 +36,7 @@ export abstract class ExposeProvider {
id: string;
status: 'deleted' | 'failed' | 'notfound';
}[]>
public abstract wipeFileById(idArg: string): Promise<{
public abstract deleteFileById(idArg: string): Promise<{
id: string;
status: 'deleted' | 'failed' | 'notfound';
}>