@aplus-frontend/ui
Version:
34 lines (33 loc) • 1.26 kB
TypeScript
import { CheckCardProps } from './interface';
import { DefineComponent, ComponentOptionsMixin, PublicProps, CSSProperties, ComponentProvideOptions } from 'vue';
type CheckCardSlots = {
default(config: {
checked: boolean;
}): void;
};
declare function __VLS_template(): {
attrs: Partial<{}>;
slots: Readonly<CheckCardSlots> & CheckCardSlots;
refs: {};
rootEl: HTMLDivElement;
};
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
declare const __VLS_component: DefineComponent<CheckCardProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
"update:checked": (...args: any[]) => void;
}, string, PublicProps, Readonly<CheckCardProps> & Readonly<{
"onUpdate:checked"?: ((...args: any[]) => any) | undefined;
}>, {
size: "middle" | "small";
style: CSSProperties;
bordered: boolean;
checked: boolean;
stopPropagation: boolean | ((event: MouseEvent) => boolean);
indicatorSize: number;
}, {}, {}, {}, string, 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;
};
};