@cnamts/vue-dot
Advanced tools
Comparing version 2.0.0-alpha.26 to 2.0.0-alpha.27
{ | ||
"name": "@cnamts/vue-dot", | ||
"version": "2.0.0-alpha.26", | ||
"version": "2.0.0-alpha.27", | ||
"description": "Official CNAM component library", | ||
@@ -147,3 +147,3 @@ "keywords": [ | ||
}, | ||
"gitHead": "c06ed449b2d96ec60848c12ed32662705f9d1190" | ||
"gitHead": "97cb2df7bd1580b16d84650ffd90d19c669ffd56" | ||
} |
@@ -5,3 +5,3 @@ import components from './components'; | ||
import { VueConstructor } from 'vue'; | ||
import VueDotPlugin from '../types'; | ||
import { VueDotPlugin } from '../types'; | ||
@@ -8,0 +8,0 @@ const VueDot: VueDotPlugin = { |
@@ -25,6 +25,10 @@ import Vue, { PluginFunction } from 'vue'; | ||
export default interface VueDotPlugin { | ||
declare const VueDot: VueDotPlugin; | ||
export default VueDot; | ||
export interface VueDotPlugin { | ||
install: PluginFunction<VueDotOptions>; | ||
} | ||
// Export generic type | ||
export type Refs<T extends object> = Vue['$refs'] & T; |
524817
8346