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)

14 lines (11 loc) 286 B
import Vue, { PluginFunction } from 'vue'; export const install: PluginFunction<{}>; interface ConfirmationServiceMethods { require(options: any): any; close(): void; } declare module 'vue/types/vue' { interface Vue { $confirm: ConfirmationServiceMethods; } }