chore: Fix some typing

This commit is contained in:
BluJ
2023-04-07 11:45:35 -06:00
parent 49277bfc78
commit 17f02bf851
4 changed files with 5 additions and 4 deletions

View File

@@ -4,5 +4,5 @@ export function sh(shellCommand: string) {
return {
command: "sh",
args: ["-c", shellCommand],
} as Partial<Parameters<Effects["runCommand"]>[0]>;
} as Parameters<Effects["runCommand"]>[0];
}