vue3-notification
Version:
Based on [vue-snotify](https://github.com/artemsky/vue-snotify) for Vue 2.
20 lines (19 loc) • 1.12 kB
TypeScript
import { App } from 'vue';
import { SnotifyDefaults } from './interfaces';
declare const _default: {
install: (app: App, options?: SnotifyDefaults) => void;
};
export default _default;
export type { SnotifyDefaults } from './interfaces/SnotifyDefaults.interface';
export type { SnotifyToastConfig } from './interfaces/SnotifyToastConfig.interface';
export type { SnotifyStyles } from './interfaces/SnotifyStyles.interface';
export type { SnotifyNotifications } from './interfaces/SnotifyNotifications.interface';
export type { SnotifyGlobalConfig } from './interfaces/SnotifyGlobalConfig.interface';
export type { SnotifyButton } from './interfaces/SnotifyButton.interface';
export type { SnotifyAnimate } from './interfaces/SnotifyAnimate.interface';
export type { Snotify } from './interfaces/Snotify.interface';
export type { SnotifyPosition } from './enums/SnotifyPosition.enum';
export type { SnotifyStyle } from './enums/SnotifyStyle.enum';
export type { SnotifyType } from './types/snotify.type';
export type { SnotifyEvent } from './types/event.type';
export type { SnotifyToast } from './models/toast.model';