export interface FileLike { readonly name: string; readonly size: number; readonly type: string; slice: (start?: number, end?: number) => Blob; }