UNPKG

petals-ui

Version:
14 lines (10 loc) 277 B
import { DirectionType } from '../../basic'; interface IStepsComponent { readonly direction: DirectionType; readonly activeFlag: number; } interface IStepComponent { readonly title: string; readonly description: string; } export { IStepsComponent, IStepComponent };