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