change type of IFlow.opts to IFlowOptions (#25274)

This commit is contained in:
Ty Thorsen
2018-04-30 09:17:51 -07:00
committed by Andy
parent 4cc58ce602
commit cd3e69c4db
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -4,7 +4,7 @@
var flowObject: flowjs.IFlow;
var bool: boolean = flowObject.support;
bool = flowObject.supportDirectory;
var obj: Object = flowObject.opts;
var flowOpts: flowjs.IFlowOptions = flowObject.opts;
var flowFileArray: flowjs.IFlowFile[] = flowObject.files;
flowObject.assignBrowse(<HTMLElement[]> [], false, false, {});
+1 -1
View File
@@ -7,7 +7,7 @@ declare namespace flowjs {
interface IFlow {
support: boolean;
supportDirectory: boolean;
opts: Object;
opts: IFlowOptions;
files: IFlowFile[];
assignBrowse(domNodes: HTMLElement[], isDirectory: boolean, singleFile: boolean, attributes: Object): void;