IFileStorage: IFileFactory & {
    clear(): Promise<void>;
    removeMany(files: IFile[]): Promise<boolean>;
}

The IFileStorage contract defines a way for managing files independent of the underlying technology. It commes with more convient methods compared to IFileStorageAdapter.

IMPORT_PATH: "@daiso-tech/core/file-storage/contracts"