UNPKG

gtht-miniapp-sdk

Version:

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

18 lines (17 loc) 459 B
import { type StyleValue } from 'vue'; export interface EmptyProps { rootStyle?: StyleValue; rootClass?: string; description?: string; icon?: string; iconFamily?: string; iconSize?: string; } export declare const defaultEmptyProps: { icon: string; }; export interface EmptySlots { default?(props: Record<string, never>): any; icon?(props: Record<string, never>): any; description?(props: Record<string, never>): any; }