riku
18 小时以前 cf4787bc8188cd0acc8a42793730b076742f29c1
miniprogram_npm/tdesign-miniprogram/back-top/type.d.ts
对比新文件
@@ -0,0 +1,26 @@
export interface TdBackTopProps {
    fixed?: {
        type: BooleanConstructor;
        value?: boolean;
    };
    icon?: {
        type: null;
        value?: string | boolean | object;
    };
    scrollTop?: {
        type: NumberConstructor;
        value?: number;
    };
    text?: {
        type: StringConstructor;
        value?: string;
    };
    theme?: {
        type: StringConstructor;
        value?: 'round' | 'half-round' | 'round-dark' | 'half-round-dark';
    };
    visibilityHeight?: {
        type: NumberConstructor;
        value?: number;
    };
}