UNPKG

@extclp/vexip-ui

Version:

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

9 lines (8 loc) 270 B
export type AlertType = 'default' | 'primary' | 'info' | 'success' | 'warning' | 'error'; export interface AlertSlots { default?: () => any; title?: () => any; close?: () => any; icon?: () => any; } export declare const alertTypes: readonly AlertType[];