gtht-miniapp-sdk
Version:
gtht-miniapp-sdk 是一套基于 Uniapp + Vue3 框架开发的兼容多端的 UI 组件库
32 lines (31 loc) • 1.24 kB
TypeScript
import { type PullDownRefreshProps, type PullDownRefreshSlots, type PullDownRefreshEmits, type PullDownRefreshStatus } from './common';
type __VLS_Slots = PullDownRefreshSlots;
declare const __VLS_component: import("vue").DefineComponent<PullDownRefreshProps, {
enableToRefresh: (canRefresh: boolean) => void;
_setStatus: (status: PullDownRefreshStatus) => void;
_emit: (event: {
name: Parameters<PullDownRefreshEmits>[0];
payload?: any;
}) => void;
_toRecovering: () => void;
_toLoading: () => void;
_setTranslateY: (y: number) => void;
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
refresh: () => any;
}, string, import("vue").PublicProps, Readonly<PullDownRefreshProps> & Readonly<{
onRefresh?: (() => any) | undefined;
}>, {
loading: boolean;
disabled: boolean;
transitionDuration: number;
threshold: number;
headerHeight: number;
doneDuration: number;
}, {}, {}, {}, 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;
};
};