mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-08-11 12:30:18 +00:00
change type of IFlow.opts to IFlowOptions (#25274)
This commit is contained in:
@@ -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, {});
|
||||
|
||||
Vendored
+1
-1
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user