cloudaxe-opencode/packages/opencode/src/cli/cmd/cmd.ts

8 lines
190 B
TypeScript
Raw Normal View History

2025-06-06 03:42:04 +00:00
import type { CommandModule } from "yargs"
export type WithDoubleDash<T> = T & { "--"?: string[] }
export function cmd<T, U>(input: CommandModule<T, WithDoubleDash<U>>) {
2025-06-06 03:42:04 +00:00
return input
}