🏷️ Updated checkbox component interface file

This commit is contained in:
Paul Valerie GOMA 2025-07-23 12:29:06 +02:00
parent 2c4a134152
commit 288008e5d9

View File

@ -81,4 +81,9 @@ export default interface IVCheckBox {
* Visual style of the checkbox, can be 'normal', 'error', or 'success'.
*/
type?: 'normal' | 'error' | 'success';
/**
* If true, the checkbox operates in binary mode (boolean value).
*/
binary?: boolean;
}