UNPKG

sard-uniapp

Version:

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

21 lines (20 loc) 590 B
import { type StyleValue } from 'vue'; import { type DefaultProps } from '../config'; export interface LoadingProps { rootStyle?: StyleValue; rootClass?: string; type?: 'clock' | 'circular'; color?: string; size?: string; text?: string; textColor?: string; textSize?: string; vertical?: boolean; animated?: boolean; progress?: number; } export declare const defaultLoadingProps: () => DefaultProps<LoadingProps>; export interface LoadingSlots { default?(props: Record<string, never>): any; circular?(props: Record<string, never>): any; }