From 9ab19be70f47c745241835a15910d8c356454624 Mon Sep 17 00:00:00 2001 From: Charles Salmon Date: Thu, 28 Feb 2019 12:13:47 +1300 Subject: [PATCH] Improve documentation on `WizardStep` type definitions, and order props in alignment iwth props declared in `WizardStep.vue`. --- types/WizardStep.ts | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/types/WizardStep.ts b/types/WizardStep.ts index 08f4c21..88a892f 100644 --- a/types/WizardStep.ts +++ b/types/WizardStep.ts @@ -1,8 +1,20 @@ import Vue from 'vue' export declare class Step extends Vue { - /** Tab component for the step. This should be usually passed through the `step` scoped slot */ + /** + * Tab component to use for the step. This should be usually passed through the `step` scoped slot. + * + * Default value: () => {} + */ tab: object + + /** + * Default value: '' + */ transition: string + + /** + * Default value: 0 + */ index: number }