@squirrel-cloud/ui-vue
Version:
松鼠的坚果屋前端VUE框架
28 lines (27 loc) • 1.09 kB
TypeScript
import { CheckboxGroupProps } from '../../props';
declare function __VLS_template(): {
attrs: Partial<{}>;
slots: {
default?(_: {}): any;
};
refs: {};
rootEl: HTMLDivElement;
};
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
declare const __VLS_component: import('vue').DefineComponent<CheckboxGroupProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
change: (value: never[]) => any;
"update:value": (value: never[]) => any;
}, string, import('vue').PublicProps, Readonly<CheckboxGroupProps> & Readonly<{
onChange?: ((value: never[]) => any) | undefined;
"onUpdate:value"?: ((value: never[]) => any) | undefined;
}>, {
disabled: boolean;
items: string[] | number[];
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
export default _default;
type __VLS_WithTemplateSlots<T, S> = T & {
new (): {
$slots: S;
};
};