UNPKG

vue3-steppy

Version:

A customizable Vue 3 Stepper plugin

22 lines (18 loc) 517 B
declare module '@/components/Vue3Steppy.vue' { import { DefineComponent } from 'vue'; export interface SteppyProps { step: number; tabs: Array<{ title: string; iconSuccess?: string; isValid: boolean; }>; finalize: () => void; backText: string; nextText: string; doneText: string; loading: boolean; primaryColor1: string; primaryColor2: string; backgroundColor: string; circleSize: number; } const Steppy: DefineComponent<SteppyProps>; export default Steppy; }