UNPKG

@artmate/chat

Version:

借鉴字节开源react库AntX,通过vue实现的版本

12 lines (11 loc) 440 B
import { CSSProperties, VNode } from 'vue'; export interface WelcomeProps { classNames?: Partial<Record<'icon' | 'title' | 'description' | 'extra', string>>; description?: string | number; extra?: string | number; icon?: string | VNode; rootClassName?: string; styles?: Partial<Record<'icon' | 'title' | 'description' | 'extra', CSSProperties>>; title?: string | number; variant?: 'filled' | 'borderless'; }