From ae04a2ee6184512c03cfe4612750edb31eeec9c5 Mon Sep 17 00:00:00 2001 From: Sean Bailey Date: Wed, 2 May 2018 15:25:32 +0100 Subject: [PATCH] Updated index ts to contain default export --- types/index.d.ts | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/types/index.d.ts b/types/index.d.ts index 6d0ce57..c52c4dd 100644 --- a/types/index.d.ts +++ b/types/index.d.ts @@ -1,4 +1,5 @@ import Vue from 'vue' +import { PluginFunction } from "vue"; export function install (vue: typeof Vue): void @@ -10,3 +11,12 @@ export class FormWizard extends Wizard {} export class TabContent extends Tab {} export class WizardStep extends Step {} +declare class VueFormWizard { + static install: PluginFunction; + + FormWizard: FormWizard; + TabContent: TabContent; + WizardStep: WizardStep; +} + +export default VueFormWizard;