@cloud-copilot/cli
Version:
A standardized library for CLI building TypeScript CLI applications
17 lines • 724 B
TypeScript
export declare const stringArgument: {
(options: {
defaultValue: string;
} & import("./argument.js").PerArgumentArgs): import("./argument.js").Argument<string>;
(options: {
defaultValue?: undefined;
} & import("./argument.js").PerArgumentArgs): import("./argument.js").Argument<string | undefined>;
};
export declare const stringArrayArgument: {
(options: {
defaultValue: string[];
} & import("./argument.js").PerArgumentArgs): import("./argument.js").Argument<string[]>;
(options: {
defaultValue?: undefined;
} & import("./argument.js").PerArgumentArgs): import("./argument.js").Argument<string[] | undefined>;
};
//# sourceMappingURL=stringArguments.d.ts.map