UNPKG

@extclp/vexip-ui

Version:

A Vue 3 UI library, Highly customizability, full TypeScript, performance pretty good

16 lines (15 loc) 644 B
import { ExtractPropTypes, PropType } from 'vue'; import { ConfigurableProps } from '@vexip-ui/config'; import { ResultSlots } from './symbol'; export declare const resultProps: { inherit: PropType<boolean>; title: PropType<string>; size: PropType<"default" | "small" | "large">; type: PropType<"success" | "error" | "warning" | "info" | "primary">; icon: PropType<any>; iconColor: PropType<string>; description: PropType<string>; slots: PropType<ResultSlots>; }; export type ResultProps = ExtractPropTypes<typeof resultProps>; export type ResultCProps = ConfigurableProps<ExtractPropTypes<typeof resultProps>>;