mirror of
https://github.com/sasjs/adapter.git
synced 2026-01-04 19:20:05 +00:00
9 lines
136 B
TypeScript
9 lines
136 B
TypeScript
/**
|
|
* Represents an object that is passed to the file uploader.
|
|
*
|
|
*/
|
|
export interface UploadFile {
|
|
file: File
|
|
fileName: string
|
|
}
|