We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ced4245 commit a95bcebCopy full SHA for a95bceb
1 file changed
lib/flow-control/flow-controller.d.ts lib/flow-control/flow-controller.tslib/flow-control/flow-controller.d.ts renamed to lib/flow-control/flow-controller.ts
@@ -1,4 +1,4 @@
1
-import { Command } from '../command.js';
+import type { Command } from '../command.js';
2
3
/**
4
* Interface for a class that controls and/or watches the behavior of commands.
@@ -7,5 +7,5 @@ import { Command } from '../command.js';
7
* actually finish.
8
*/
9
export interface FlowController {
10
- handle: (commands: Command[]) => { commands: Command[]; onFinish?: () => void | Promise<void> };
+ handle(commands: Command[]): { commands: Command[]; onFinish?: () => void | Promise<void> };
11
}
0 commit comments