gtht-miniapp-sdk
Version:
gtht-miniapp-sdk 是一套基于 Uniapp + Vue3 框架开发的兼容多端的 UI 组件库
20 lines (19 loc) • 438 B
TypeScript
import { type StyleValue } from 'vue';
export interface WaterfallLoadProps {
rootStyle?: StyleValue;
rootClass?: string;
maxWait?: number;
width?: number;
height?: number;
}
export interface WaterfallLoadSlots {
default?(props: {
onLoad: (event: any) => void;
overtime: boolean;
}): any;
}
export interface WaterfallLoadEmits {
(e: 'load'): void;
}
export interface WaterfallLoadExpose {
}