UNPKG

t-ui-plus

Version:

Page level components developed based on Element Plus.

66 lines (64 loc) 1.9 kB
import { PropType, DefineComponent, ExtractPropTypes, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue'; declare function __VLS_template(): Partial<Record<any, (_: any) => any>> & { default?(_: {}): any; }; declare const __VLS_component: DefineComponent<ExtractPropTypes<{ type: { type: PropType<"check" | "button">; validator: (value: string) => boolean; default: string; }; options: { type: any; default: () => never[]; }; size: { type: PropType<"large" | "default" | "small">; validator: (value: string) => boolean; default: string; }; border: { type: BooleanConstructor; default: boolean; }; props: { type: ObjectConstructor; default: () => {}; }; }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly< ExtractPropTypes<{ type: { type: PropType<"check" | "button">; validator: (value: string) => boolean; default: string; }; options: { type: any; default: () => never[]; }; size: { type: PropType<"large" | "default" | "small">; validator: (value: string) => boolean; default: string; }; border: { type: BooleanConstructor; default: boolean; }; props: { type: ObjectConstructor; default: () => {}; }; }>> & Readonly<{}>, { props: Record<string, any>; type: "button" | "check"; size: "default" | "small" | "large"; border: boolean; options: any; }, {}, {}, {}, string, ComponentProvideOptions, true, {}, 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; }; };