1
0
mirror of https://github.com/sasjs/adapter.git synced 2026-01-04 19:20:05 +00:00
Files
adapter/src/types/UploadFile.ts
2020-09-16 11:34:59 +03:00

9 lines
136 B
TypeScript

/**
* Represents an object that is passed to the file uploader.
*
*/
export interface UploadFile {
file: File
fileName: string
}