@visactor/vue-vtable
Version:
The vue version of VTable
21 lines (20 loc) • 542 B
TypeScript
import type { VNode } from 'vue';
export interface CheckboxProps {
children?: string;
textStyle?: any;
boxStyle?: any;
iconStyle?: any;
checked?: boolean;
indeterminate?: boolean;
interactive?: boolean;
disabled?: boolean;
disableCursor?: any;
spaceBetweenTextAndIcon?: number;
visible?: boolean;
onChange?: (checked: boolean) => void;
}
declare function CheckBox(props: CheckboxProps): VNode;
declare namespace CheckBox {
var symbol: string;
}
export default CheckBox;