blob: eaa7803aad568bbb8f95d382205a8f7e4ae351f2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// @ts-types="npm:@types/yargs"
export { default } from "yargs";
export * from "yargs";
import { CommandModule } from "yargs";
export function defineYargsModule<T, U>(
module: CommandModule<T, U>,
): CommandModule<T, U> {
return module;
}
export const DEMAND_COMMAND_MESSAGE = "No command is specified";
|