UNPKG

sard-uniapp

Version:

sard-uniapp 是一套基于 Uniapp + Vue3 框架开发的兼容多端的 UI 组件库

19 lines (18 loc) 556 B
import { type Size } from '../../utils'; import { type StyleValue } from 'vue'; import { type DefaultProps } from '../config'; export interface ResizeSensorProps { rootStyle?: StyleValue; rootClass?: string; initial?: boolean; threshold?: number; } export declare const defaultResizeSensorProps: () => DefaultProps<ResizeSensorProps>; export interface ResizeSensorSlots { default?(props: Record<string, never>): any; } export interface ResizeSensorEmits { (e: 'resize', value: Size): void; } export interface ResizeSensorExpose { }