refactor(cli): convert run command to effectCmd (#25519)

This commit is contained in:
Kit Langton
2026-05-02 22:35:20 -04:00
committed by GitHub
parent 2829943ad1
commit 7409dcc6bd
3 changed files with 25 additions and 20 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
import type { CommandModule } from "yargs"
type WithDoubleDash<T> = T & { "--"?: string[] }
export type WithDoubleDash<T> = T & { "--"?: string[] }
export function cmd<T, U>(input: CommandModule<T, WithDoubleDash<U>>) {
return input