UNPKG

@qvant/qui-max

Version:

A Vue 3 Design system for Web.

9 lines (8 loc) 516 B
import type { Plugin } from 'vue'; import { NotifyType, Q_NOTIFY_INJECTION_KEY } from './src/constants'; import type { QNotify, QNotificationOptions } from './src/types'; declare const QNotification: Plugin; declare const provideNotify: (options?: QNotificationOptions | undefined) => void; declare const useNotify: (options?: QNotificationOptions | undefined) => QNotify; export type { QNotify, QNotifyId } from './src/types'; export { Q_NOTIFY_INJECTION_KEY, NotifyType, QNotification, provideNotify, useNotify };