@cloud-copilot/cli
Version:
A standardized library for CLI building TypeScript CLI applications
11 lines • 438 B
TypeScript
import { Argument, PerArgumentArgs } from './argument.js';
/**
* Creates a boolean argument that is false by default and true if present.
*
* @param options the description and the single character that can be used to set the value to true
* @returns a boolean argument
*/
export declare function booleanArgument(options: {
character: string;
} & PerArgumentArgs): Argument<boolean>;
//# sourceMappingURL=booleanArgument.d.ts.map