Skip to content

Commit

Permalink
Merge branch 'file_upload' into tdesvenain
Browse files Browse the repository at this point in the history
  • Loading branch information
tdesvenain committed Dec 17, 2017
2 parents c1b7ece + 870b575 commit a359c2e
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion src/interfaces.ts
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ export interface TextValue {
export interface Comment {
author_name: string;
author_username: string;
comment_id: string ;
comment_id: string;
creation_date: Date;
in_reply_to?: string | null;
modification_date: Date;
Expand Down Expand Up @@ -148,6 +148,16 @@ export interface DownloadFailedEvent {
namedFile: NamedFile;
}

/*
* FILE UPLOAD
*/

export interface NamedFileUpload {
data: any;
encoding: string;
filename: string;
'content-type': string;
}

/*
* WORKFLOW
Expand Down

0 comments on commit a359c2e

Please sign in to comment.