mirror of
https://github.com/tenrok/vue-form-wizard.git
synced 2026-06-23 13:40:32 +03:00
Updated index ts to contain default export
This commit is contained in:
Vendored
+10
@@ -1,4 +1,5 @@
|
|||||||
import Vue from 'vue'
|
import Vue from 'vue'
|
||||||
|
import { PluginFunction } from "vue";
|
||||||
|
|
||||||
export function install (vue: typeof Vue): void
|
export function install (vue: typeof Vue): void
|
||||||
|
|
||||||
@@ -10,3 +11,12 @@ export class FormWizard extends Wizard {}
|
|||||||
export class TabContent extends Tab {}
|
export class TabContent extends Tab {}
|
||||||
export class WizardStep extends Step {}
|
export class WizardStep extends Step {}
|
||||||
|
|
||||||
|
declare class VueFormWizard {
|
||||||
|
static install: PluginFunction<never>;
|
||||||
|
|
||||||
|
FormWizard: FormWizard;
|
||||||
|
TabContent: TabContent;
|
||||||
|
WizardStep: WizardStep;
|
||||||
|
}
|
||||||
|
|
||||||
|
export default VueFormWizard;
|
||||||
|
|||||||
Reference in New Issue
Block a user