riku
18 小时以前 cf4787bc8188cd0acc8a42793730b076742f29c1
miniprogram_npm/tdesign-miniprogram/count-down/type.d.ts
对比新文件
@@ -0,0 +1,35 @@
export interface TdCountDownProps {
    autoStart?: {
        type: BooleanConstructor;
        value?: boolean;
    };
    content?: {
        type: StringConstructor;
        value?: string;
    };
    format?: {
        type: StringConstructor;
        value?: string;
    };
    millisecond?: {
        type: BooleanConstructor;
        value?: boolean;
    };
    size?: {
        type: StringConstructor;
        value?: 'small' | 'medium' | 'large';
    };
    splitWithUnit?: {
        type: BooleanConstructor;
        value?: boolean;
    };
    theme?: {
        type: StringConstructor;
        value?: 'default' | 'round' | 'square';
    };
    time: {
        type: NumberConstructor;
        value?: number;
        required?: boolean;
    };
}