mirror of
https://github.com/sasjs/adapter.git
synced 2026-01-10 22:00:05 +00:00
9 lines
138 B
TypeScript
9 lines
138 B
TypeScript
/**
|
|
* Represents a object that is passed to file uploader
|
|
*
|
|
*/
|
|
export interface UploadFile {
|
|
file: File;
|
|
fileName: string;
|
|
}
|
|
|