Files
Kilo-Org_kilocode/packages/opencode/src/cli/cmd/cmd.ts
T
2026-05-15 09:25:13 +02:00

8 lines
190 B
TypeScript

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