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 }