UNPKG

notiwind

Version:

A headless Vue 3 notification library to use with Tailwind CSS.

17 lines (15 loc) 332 B
import { Notification } from './types'; type Events = { notify: { notification: Notification; timeout?: number; }; close: number; hovering: { id: number; value: boolean; timeout?: number; }; }; declare const events: import('mitt').Emitter<Events>; export default events;