UNPKG

kage-ui

Version:

A minimal, border-focused Angular UI component library.

9 lines (8 loc) 304 B
export type KageToastType = 'success' | 'danger' | 'info' | 'warning'; export type KageToastPosition = 'top-left' | 'top-right' | 'bottom-left' | 'bottom-right'; export interface KageToastOptions { message: string; type?: KageToastType; duration?: number; position?: KageToastPosition; }