Skip to content

Commit

Permalink
fix(typing): added authTokenHeader property to options and file uploa…
Browse files Browse the repository at this point in the history
…d class
  • Loading branch information
valorkin committed Oct 19, 2016
1 parent 282295c commit b55c852
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions components/file-upload/file-uploader.class.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ export interface FileUploaderOptions {
url?:string;
disableMultipart?:boolean;
itemAlias?: string;
authTokenHeader?: string;
}

export class FileUploader {
Expand All @@ -40,6 +41,7 @@ export class FileUploader {
public progress:number = 0;
public _nextIndex:number = 0;
public autoUpload:any;
public authTokenHeader: string;

public options:FileUploaderOptions = {
autoUpload: false,
Expand Down

0 comments on commit b55c852

Please sign in to comment.