cmms/frontend/node_modules/radix-vue/dist/Checkbox/utils.d.ts

4 lines
247 B
TypeScript

export type CheckedState = boolean | 'indeterminate';
export declare function isIndeterminate(checked?: CheckedState): checked is 'indeterminate';
export declare function getState(checked: CheckedState): "indeterminate" | "checked" | "unchecked";