lbry-desktop/flow-typed/file-data.js

11 lines
145 B
JavaScript
Raw Normal View History

2022-11-15 12:11:42 -05:00
// @flow
declare type FileData = {
file?: Blob,
path: string,
duration?: number,
size?: number,
mimeType: string,
error?: string,
}