UNPKG

@cloud-copilot/cli

Version:

A standardized library for CLI building TypeScript CLI applications

11 lines 457 B
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<const O extends { character: string; } & PerArgumentArgs>(options: O): Argument<boolean>; //# sourceMappingURL=booleanArgument.d.ts.map