UNPKG

370 BTypeScriptView Raw
1export declare class FileLikeObject {
2 lastModifiedDate: any;
3 size: any;
4 type?: string;
5 name?: string;
6 rawFile: HTMLInputElement | File;
7 constructor(fileOrInput: HTMLInputElement | File);
8 _createFromFakePath(path: string): void;
9 _createFromObject(object: {
10 size: number;
11 type: string;
12 name: string;
13 }): void;
14}