Skip to content

Commit

Permalink
fix: make runOptions optional
Browse files Browse the repository at this point in the history
  • Loading branch information
kettanaito committed Dec 9, 2024
1 parent 35dc330 commit 66b4ad8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/define-launcher.ts
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ export interface DefineLauncherOptions<Context> {
export interface Launcher {
[kLauncherOptions]: DefineLauncherOptions<any>

run(runOptions: RunOptions): Promise<AppProcess>
run: (runOptions?: RunOptions) => Promise<AppProcess>
}

export interface RunOptions {
Expand Down

0 comments on commit 66b4ad8

Please sign in to comment.