UNPKG

@tsaibot/vue-typed

Version:
13 lines (9 loc) 324 B
import Vue, { PluginFunction, VueConstructor } from 'vue'; interface InstallFunction extends PluginFunction<any> { installed?: boolean; } export interface InstallableComponent extends VueConstructor<Vue> { install: InstallFunction; } declare const VueTyped: InstallableComponent; export default VueTyped;