11 lines
145 B
JavaScript
11 lines
145 B
JavaScript
|
// @flow
|
||
|
|
||
|
declare type FileData = {
|
||
|
file?: Blob,
|
||
|
path: string,
|
||
|
duration?: number,
|
||
|
size?: number,
|
||
|
mimeType: string,
|
||
|
error?: string,
|
||
|
}
|