




interface FileSystemProvider {
  getFile (fileId: string, extract?: any): any
  saveFile (fileId: string, extract?: any): any
  updateFile (fileId: string, extract?: any): any
  deleteFile (fileId: string, extract?: any): any
}

export {
  FileSystemProvider
}