maz-ui
Version:
A standalone components library for Vue.Js 3 & Nuxt.Js 3
10 lines (9 loc) • 451 B
TypeScript
import type { App } from 'vue';
import type { ToasterOptions } from './types';
import { ToasterHandler } from './ToasterHandler';
export declare function createToaster(app: App, options?: ToasterOptions): ToasterHandler;
export declare const installToaster: {
install(app: App, options?: ToasterOptions): void;
};
export { ToasterHandler } from './ToasterHandler';
export type { ToasterOptions, ToasterPosition, ToasterPositions } from './types';