@elsikora/commitizen-plugin-commitlint-ai
Version:
AI-powered Commitizen adapter with Commitlint integration
22 lines (21 loc) • 431 B
TypeScript
/**
* Options for select inputs in the CLI interface
*/
export interface ICliInterfaceServiceSelectOptions {
/**
* Optional hint text for the option
*/
hint?: string;
/**
* Whether the option is disabled
*/
isDisabled?: boolean;
/**
* Display label for the option
*/
label: string;
/**
* Value to be returned when the option is selected
*/
value: string;
}