vue-snotify
Version:
A Vue.js toast notifications
19 lines (18 loc) • 1.03 kB
TypeScript
import { SnotifyDefaults } from './interfaces';
declare const Plugin: {
install(Vue: any, options?: SnotifyDefaults): void;
};
export default Plugin;
export { SnotifyDefaults } from './interfaces/SnotifyDefaults.interface';
export { SnotifyToastConfig } from './interfaces/SnotifyToastConfig.interface';
export { SnotifyStyles } from './interfaces/SnotifyStyles.interface';
export { SnotifyNotifications } from './interfaces/SnotifyNotifications.interface';
export { SnotifyGlobalConfig } from './interfaces/SnotifyGlobalConfig.interface';
export { SnotifyButton } from './interfaces/SnotifyButton.interface';
export { SnotifyAnimate } from './interfaces/SnotifyAnimate.interface';
export { Snotify } from './interfaces/Snotify.interface';
export { SnotifyPosition } from './enums/SnotifyPosition.enum';
export { SnotifyStyle } from './enums/SnotifyStyle.enum';
export { SnotifyType } from './types/snotify.type';
export { SnotifyEvent } from './types/event.type';
export { SnotifyToast } from './components/toast.model';