import { ILocalFileDataSource } from './ILocalFileDataSource'; import { FileEntity } from '../../../Domain/entity/FileEntity'; export class LocalFileDataSource implements ILocalFileDataSource { clearAll(): Promise { throw new Error('Method not implemented.'); } createFile(file: FileEntity): Promise { throw new Error('Method not implemented.'); } deleteFile(id: string): Promise { throw new Error('Method not implemented.'); } getFile(id: string): Promise { throw new Error('Method not implemented.'); } }