Skip to content

Commit 66b4ad8

Browse files
committed
fix: make runOptions optional
1 parent 35dc330 commit 66b4ad8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/define-launcher.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ export interface DefineLauncherOptions<Context> {
7373
export interface Launcher {
7474
[kLauncherOptions]: DefineLauncherOptions<any>
7575

76-
run(runOptions: RunOptions): Promise<AppProcess>
76+
run: (runOptions?: RunOptions) => Promise<AppProcess>
7777
}
7878

7979
export interface RunOptions {

0 commit comments

Comments
 (0)