gtht-miniapp-sdk
Version:
gtht-miniapp-sdk 是一套基于 Uniapp + Vue3 框架开发的兼容多端的 UI 组件库
20 lines (19 loc) • 506 B
TypeScript
import { type NodeRect } from '../../utils';
import { type StyleValue } from 'vue';
export interface ResizeSensorProps {
rootStyle?: StyleValue;
rootClass?: string;
initial?: boolean;
threshold?: number;
}
export declare const defaultResizeSensorProps: {
threshold: number;
};
export interface ResizeSensorSlots {
default?(props: Record<string, never>): any;
}
export interface ResizeSensorEmits {
(e: 'resize', value: NodeRect): void;
}
export interface ResizeSensorExpose {
}