UNPKG

sard-uniapp

Version:

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

22 lines (21 loc) 665 B
import { type StyleValue } from 'vue'; import { type DefaultProps } from '../config'; export interface FloatingPanelProps { rootStyle?: StyleValue; rootClass?: string; height?: number; anchors?: number[]; duration?: number; contentDraggable?: boolean; safeAreaInsetBottom?: boolean; } export declare const defaultFloatingPanelProps: () => DefaultProps<FloatingPanelProps>; export interface FloatingPanelSlots { default?(props: Record<string, never>): any; } export interface FloatingPanelEmits { (e: 'update:height', value: number): void; (e: 'height-change', value: number): void; } export interface FloatingPanelExpose { }