gtht-miniapp-sdk
Version:
gtht-miniapp-sdk 是一套基于 Uniapp + Vue3 框架开发的兼容多端的 UI 组件库
25 lines (24 loc) • 670 B
TypeScript
import { type StyleValue } from 'vue';
export interface FloatingPanelProps {
rootStyle?: StyleValue;
rootClass?: string;
height?: number;
anchors?: number[];
duration?: number;
contentDraggable?: boolean;
safeAreaInsetBottom?: boolean;
}
export declare const defaultFloatingPanelProps: {
duration: number;
contentDraggable: boolean;
safeAreaInsetBottom: boolean;
};
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 {
}