lbry-desktop/flow-typed/file-with-path.js

10 lines
192 B
JavaScript
Raw Normal View History

2022-08-16 12:37:32 -03:00
// @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,
}