6 lines
117 B
TypeScript
6 lines
117 B
TypeScript
|
|
import type { CommandModule } from "yargs"
|
||
|
|
|
||
|
|
export function cmd<T, U>(input: CommandModule<T, U>) {
|
||
|
|
return input
|
||
|
|
}
|