UNPKG

@obliczeniowo/elementary

Version:
9 lines (8 loc) 206 B
export type StepperStepState = 'active' | 'inactive' | 'disabled'; export interface Step<T = any> { name: string; description: string; icon: string; state: StepperStepState; data?: T; }