13 lines
272 B
TypeScript
13 lines
272 B
TypeScript
import Vue from 'vue';
|
|
import { ToastExtendConstructor, IOptions } from '../src/plugins/toast';
|
|
|
|
interface IPlugin {
|
|
toast(options: string | IOptions): ToastExtendConstructor;
|
|
}
|
|
|
|
declare module 'vue/types/vue' {
|
|
interface Vue {
|
|
$plugin: IPlugin;
|
|
}
|
|
}
|