UNPKG

primevue

Version:

[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) [![npm version](https://badge.fury.io/js/primevue.svg)](https://badge.fury.io/js/primevue) [![Join the chat at https://gitter.im/primefaces/primevu

15 lines (12 loc) 297 B
import Vue, { PluginFunction } from 'vue'; export const install: PluginFunction<{}>; interface ToastServiceMethods { add(message: any): any; removeGroup(group: any): void; removeAllGroups(): void; } declare module 'vue/types/vue' { interface Vue { $toast: ToastServiceMethods; } }