@tripetto/block-checkboxes
Version:
Checkboxes block for Tripetto.
15 lines (14 loc) • 443 B
TypeScript
export interface ICheckbox {
/** Id of the checkbox. */
readonly id: string;
/** Name of the checkbox. */
readonly name: string;
/** Description for the checkbox. */
readonly description?: string;
/** Value of the checkbox. */
readonly value?: string;
/** Score of the checkbox. */
readonly score?: number;
/** Specifies if the checkbox is an exclusive value. */
readonly exclusive?: boolean;
}