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

11 lines
145 B
JavaScript
Raw Normal View History

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