UNPKG

radix-vue

Version:

Vue port for Radix UI Primitives.

4 lines (3 loc) 247 B
export type CheckedState = boolean | 'indeterminate'; export declare function isIndeterminate(checked?: CheckedState): checked is 'indeterminate'; export declare function getState(checked: CheckedState): "indeterminate" | "checked" | "unchecked";