@wocwin/t-ui-plus
Version:
Page level components developed based on Element Plus.
38 lines (37 loc) • 1.23 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<{
formOpts: {
type: ObjectConstructor;
default: () => {};
};
titleBold: {
type: BooleanConstructor;
default: boolean;
};
}, {
getChildRef: (index: string | number) => any;
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
handleEvent: (...args: any[]) => void;
}, string, PublicProps, Readonly< ExtractPropTypes<{
formOpts: {
type: ObjectConstructor;
default: () => {};
};
titleBold: {
type: BooleanConstructor;
default: boolean;
};
}>> & {
onHandleEvent?: ((...args: any[]) => any) | undefined;
}, {
titleBold: boolean;
formOpts: Record<string, any>;
}, {}>;
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
export default _default;
type __VLS_WithTemplateSlots<T, S> = T & {
new (): {
$slots: S;
};
};