fix published types for defiler.add

This commit is contained in:
Conduitry 2020-10-29 09:31:47 -04:00
parent 7fa9a6d7d7
commit a7a47c139b
1 changed files with 1 additions and 1 deletions

2
types/index.d.ts vendored
View File

@ -8,7 +8,7 @@ export class Defiler {
get(path: string): Promise<File>;
get(paths: string[]): Promise<File[]>;
get(filter: Filter): Promise<File[]>;
add(file: FileData): void;
add(file: FileData): Promise<void>;
resolve(path: string): string;
}