1
0
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:
Mihajlo Medjedovic
2020-07-28 13:23:57 +02:00
parent 2ce3669b10
commit 261913d2d7
29 changed files with 3193 additions and 28 deletions

9
src/types/UploadFile.ts Normal file
View File

@@ -0,0 +1,9 @@
/**
* Represents a object that is passed to file uploader
*
*/
export interface UploadFile {
file: File;
fileName: string;
}

View File

@@ -8,3 +8,4 @@ export * from "./SASjsRequest";
export * from "./SASjsWaitingRequest";
export * from "./ServerType";
export * from "./Session";
export * from "./UploadFile";