mirror of
https://github.com/crawlab-team/crawlab.git
synced 2026-01-28 17:50:56 +01:00
16 lines
646 B
TypeScript
16 lines
646 B
TypeScript
type __VLS_Props = {
|
|
option: CheckboxTreeSelectOption;
|
|
state: {
|
|
checked: boolean;
|
|
intermediate: boolean;
|
|
};
|
|
disabled?: boolean;
|
|
checkedAll?: boolean;
|
|
};
|
|
declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
"update:state": (checked: boolean) => any;
|
|
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
"onUpdate:state"?: ((checked: boolean) => any) | undefined;
|
|
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
export default _default;
|