@supernovaio/cli
Version:
Supernova.io Command Line Interface
14 lines • 369 B
TypeScript
type Choice<Value> = {
checked?: boolean;
description?: string;
disabled?: boolean | string;
name?: string;
short?: string;
value: Value;
};
export declare function promptImplicitCheckbox<Value>(config: {
choices: readonly Choice<Value>[];
message: string;
}): Promise<Value[]>;
export {};
//# sourceMappingURL=implicit-checkbox.d.ts.map