@wocwin/t-ui-plus
Version:
Page level components developed based on Element Plus.
32 lines (31 loc) • 1.07 kB
TypeScript
import { DefineComponent, ComponentOptionsMixin, PublicProps, ExtractPropTypes } from 'vue';
declare function __VLS_template(): Partial<Record<any, (_: {}) => any>> & Partial<Record<any, (_: {}) => any>> & Partial<Record<NonNullable<string | number>, (_: any) => any>>;
declare const __VLS_component: DefineComponent<{
descData: {
type: ObjectConstructor;
default: () => {};
};
titleBold: {
type: BooleanConstructor;
default: boolean;
};
}, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly< ExtractPropTypes<{
descData: {
type: ObjectConstructor;
default: () => {};
};
titleBold: {
type: BooleanConstructor;
default: boolean;
};
}>>, {
descData: Record<string, any>;
titleBold: boolean;
}, {}>;
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
export default _default;
type __VLS_WithTemplateSlots<T, S> = T & {
new (): {
$slots: S;
};
};