UNPKG

st-common-ui-vue3

Version:

小尾巴通用 Vue3 UI 组件库

50 lines (49 loc) 1.73 kB
/** * 组件参数 */ declare let __VLS_typeProps: { pageMinHeight?: number | string; circleMaskDiameter?: number | string; circleMaskDiameterSmall?: number | string; circleMaskColor?: string; panelImgSrc?: string[] | string; panelImgWidthSmall?: number | string; }; declare const __VLS_defaults: { modelValue: boolean; }; type __VLS_PublicProps = { modelValue?: typeof __VLS_defaults['modelValue']; } & typeof __VLS_typeProps; declare function __VLS_template(): { slots: { "form-1"?(_: {}): any; "form-2"?(_: {}): any; "panel-1"?(_: {}): any; "panel-1-top"?(_: {}): any; "panel-2"?(_: {}): any; "panel-2-top"?(_: {}): any; }; refs: {}; attrs: Partial<{}>; }; type __VLS_TemplateResult = ReturnType<typeof __VLS_template>; declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, { "update:modelValue": (modelValue: boolean) => any; }, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{ "onUpdate:modelValue"?: ((modelValue: boolean) => any) | undefined; }>, { pageMinHeight: number | string; circleMaskDiameter: number | string; circleMaskDiameterSmall: number | string; circleMaskColor: string; panelImgSrc: string[] | string; panelImgWidthSmall: number | string; }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>; declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>; export default _default; type __VLS_WithTemplateSlots<T, S> = T & { new (): { $slots: S; }; };