UNPKG

sard-uniapp

Version:

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

19 lines (18 loc) 520 B
import { type StyleValue } from 'vue'; import { type DefaultProps } from '../config'; export interface OverlayProps { rootStyle?: StyleValue; rootClass?: string; visible?: boolean; zIndex?: number; duration?: number; background?: string; transparent?: boolean; } export declare const defaultOverlayProps: () => DefaultProps<OverlayProps>; export interface OverlaySlots { default?(props: Record<string, never>): any; } export interface OverlayEmits { (e: 'click', event: any): void; }