Update file-like-object.class.ts

The "rawFile" variable should be annotated by "any", because it's an object in actual use. Otherwise, using “rawFile.xx” leads to tsLint's error
This commit is contained in:
Ron Li
2018-08-07 17:25:02 +08:00
committed by GitHub
parent fb48f4411d
commit 5c4611f637

View File

@@ -7,7 +7,7 @@ export class FileLikeObject {
public size: any;
public type: string;
public name: string;
public rawFile: string;
public rawFile: any;
public constructor(fileOrInput: any) {
this.rawFile = fileOrInput;