2
0
mirror of https://github.com/tenrok/vue-form-wizard.git synced 2026-06-08 12:52:23 +03:00

Updated index ts to contain default export

This commit is contained in:
Sean Bailey
2018-05-02 15:25:32 +01:00
parent a3a0851f5b
commit ae04a2ee61
+10
View File
@@ -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<never>;
FormWizard: FormWizard;
TabContent: TabContent;
WizardStep: WizardStep;
}
export default VueFormWizard;