UNPKG

452 BTypeScriptView Raw
1import _Vue from 'vue';
2import './lib';
3import { ShDialog, ShModalProgrammatic } from './components';
4
5// Adds Buefy method signatures to Vue instance (ie this.$dialog)
6declare module 'vue/types/vue' {
7 interface Vue {
8 $shdialog: typeof ShDialog;
9 $shmodal: typeof ShModalProgrammatic;
10 }
11}
12
13
14declare const _default: {
15 install(Vue: typeof _Vue): void;
16};
17
18export {
19 ShDialog, ShModalProgrammatic
20}
21
22export default _default;