UNPKG

yuang-framework-ui-pc

Version:

yuang-framework-ui-pc Library

15 lines (12 loc) 253 B
import type { ElStepProps } from '../ele-app/el'; /** * 步骤条数据 */ export interface StepItem extends ElStepProps { /** 循环的 key */ key?: string | number | symbol; } /** * 步骤条类型 */ export type StepType = 'inline' | null;