| 1 | export interface StepOptions { |
| 2 | id?: string; |
| 3 | index: number; |
| 4 | beforeActive?: Function; |
| 5 | beforeLeave?: Function; |
| 6 | title?: string; |
| 7 | description?: string; |
| 8 | icon?: string; |
| 9 | status?: string; |
| 10 | } |
| 11 | |
| 12 | export interface StepperOptions { |
| 13 | steps: StepOptions[]; |
nothing calls this directly
no outgoing calls
no test coverage detected