riku
2026-01-16 1f9e43b7bbb848c7ee2aaa89ffece17002b2c915
miniprogram_npm/tdesign-miniprogram/steps/type.d.ts
对比新文件
@@ -0,0 +1,30 @@
export interface TdStepsProps {
    current?: {
        type: null;
        value?: string | number;
    };
    defaultCurrent?: {
        type: null;
        value?: string | number;
    };
    currentStatus?: {
        type: StringConstructor;
        value?: 'default' | 'process' | 'finish' | 'error';
    };
    layout?: {
        type: StringConstructor;
        value?: 'horizontal' | 'vertical';
    };
    readonly?: {
        type: BooleanConstructor;
        value?: boolean;
    };
    sequence?: {
        type: StringConstructor;
        value?: 'positive' | 'reverse';
    };
    theme?: {
        type: StringConstructor;
        value?: 'default' | 'dot';
    };
}