lbry-desktop/flow-typed/file-with-path.js
2022-08-16 12:37:32 -03:00

9 lines
192 B
JavaScript

// @flow
declare type FileWithPath = {
file: File,
// The full path will only be available in
// the application. For browser, the name
// of the file will be used.
path: string,
}