lbry-desktop/flow-typed/file-data.js
2022-11-15 12:18:11 -05:00

10 lines
145 B
JavaScript

// @flow
declare type FileData = {
file?: Blob,
path: string,
duration?: number,
size?: number,
mimeType: string,
error?: string,
}