Skip to content

Commit b55c852

Browse files
committed
fix(typing): added authTokenHeader property to options and file upload class
1 parent 282295c commit b55c852

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

components/file-upload/file-uploader.class.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ export interface FileUploaderOptions {
3030
url?:string;
3131
disableMultipart?:boolean;
3232
itemAlias?: string;
33+
authTokenHeader?: string;
3334
}
3435

3536
export class FileUploader {
@@ -40,6 +41,7 @@ export class FileUploader {
4041
public progress:number = 0;
4142
public _nextIndex:number = 0;
4243
public autoUpload:any;
44+
public authTokenHeader: string;
4345

4446
public options:FileUploaderOptions = {
4547
autoUpload: false,

0 commit comments

Comments
 (0)