sard-uniapp
Version:
sard-uniapp 是一套基于 Uniapp + Vue3 框架开发的兼容多端的 UI 组件库
18 lines (17 loc) • 546 B
TypeScript
import { type StyleValue } from 'vue';
import { type DefaultProps } from '../config';
export interface EmptyProps {
rootStyle?: StyleValue;
rootClass?: string;
description?: string;
icon?: string;
iconFamily?: string;
iconSize?: string;
size?: 'small' | 'medium';
}
export declare const defaultEmptyProps: () => DefaultProps<EmptyProps>;
export interface EmptySlots {
default?(props: Record<string, never>): any;
icon?(props: Record<string, never>): any;
description?(props: Record<string, never>): any;
}