We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3ea8089 + 70f31fb commit 550002eCopy full SHA for 550002e
types/index.d.ts
@@ -1,4 +1,4 @@
1
-import Vue, { PluginFunction } from 'vue'
+import Vue, { PluginObject } from 'vue'
2
3
export class VueFinalModalComponant extends Vue {
4
$refs: {
@@ -20,6 +20,10 @@ declare module 'vue/types/vue' {
20
}
21
22
23
-export default class VueFinalModal {
24
- static install(vue: typeof Vue): PluginFunction<never>
25
-}
+export interface VfmOptions {
+ componentName: string,
+ key: string
26
+}
27
+
28
+declare const VfmPlugin: () => PluginObject<VfmOptions>
29
+export default VfmPlugin
0 commit comments