@squirrel-cloud/ui-vue
Version:
松鼠的坚果屋前端VUE框架
26 lines (25 loc) • 976 B
TypeScript
import { CheckTagProps } from '../../props';
declare function __VLS_template(): {
attrs: Partial<{}>;
slots: {
default?(_: {}): any;
};
refs: {};
rootEl: HTMLSpanElement;
};
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
declare const __VLS_component: import('vue').DefineComponent<CheckTagProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
change: (newVal: boolean) => any;
}, string, import('vue').PublicProps, Readonly<CheckTagProps> & Readonly<{
onChange?: ((newVal: boolean) => any) | undefined;
}>, {
size: import('../..').ComponentSize;
checked: boolean;
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLSpanElement>;
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
export default _default;
type __VLS_WithTemplateSlots<T, S> = T & {
new (): {
$slots: S;
};
};