Files
anomalyco_opencode/packages/opencode/src/cli/cmd/cmd.ts
T

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
}