gtht-miniapp-sdk
Version:
gtht-miniapp-sdk 是一套基于 Uniapp + Vue3 框架开发的兼容多端的 UI 组件库
33 lines (32 loc) • 1.26 kB
TypeScript
import { type PopoutInputProps } from './common';
declare var __VLS_9: {}, __VLS_11: {}, __VLS_16: {}, __VLS_21: {};
type __VLS_Slots = {} & {
prepend?: (props: typeof __VLS_9) => any;
} & {
append?: (props: typeof __VLS_11) => any;
} & {
arrow?: (props: typeof __VLS_16) => any;
} & {
default?: (props: typeof __VLS_21) => any;
};
declare const __VLS_component: import("vue").DefineComponent<PopoutInputProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
change: (value: string) => any;
click: (event: any) => any;
"update:model-value": (value: string) => any;
clear: () => any;
}, string, import("vue").PublicProps, Readonly<PopoutInputProps> & Readonly<{
onChange?: ((value: string) => any) | undefined;
onClick?: ((event: any) => any) | undefined;
"onUpdate:model-value"?: ((value: string) => any) | undefined;
onClear?: (() => any) | undefined;
}>, {
arrow: string;
arrowFamily: string;
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
export default _default;
type __VLS_WithSlots<T, S> = T & {
new (): {
$slots: S;
};
};