sard-uniapp
Version:
sard-uniapp 是一套基于 Uniapp + Vue3 框架开发的兼容多端的 UI 组件库
24 lines (23 loc) • 520 B
TypeScript
import { type StyleValue } from 'vue';
export interface WaterfallItemProps {
rootStyle?: StyleValue;
rootClass?: string;
}
export interface WaterfallItemSlots {
default?(props: {
onLoad: () => void;
columnWidth: number;
}): any;
}
export interface WaterfallItemEmits {
}
export interface WaterfallItemExpose {
}
export interface WaterfallItemInfo {
height: number;
loaded: boolean;
visible: boolean;
top: number;
left: number;
beforeReflow: () => Promise<void>;
}