mirror of
https://github.com/sasjs/adapter.git
synced 2026-01-07 04:20:05 +00:00
fix: uploadFile accept multiple files
This commit is contained in:
9
src/types/UploadFile.ts
Normal file
9
src/types/UploadFile.ts
Normal file
@@ -0,0 +1,9 @@
|
||||
/**
|
||||
* Represents a object that is passed to file uploader
|
||||
*
|
||||
*/
|
||||
export interface UploadFile {
|
||||
file: File;
|
||||
fileName: string;
|
||||
}
|
||||
|
||||
@@ -8,3 +8,4 @@ export * from "./SASjsRequest";
|
||||
export * from "./SASjsWaitingRequest";
|
||||
export * from "./ServerType";
|
||||
export * from "./Session";
|
||||
export * from "./UploadFile";
|
||||
|
||||
Reference in New Issue
Block a user