riku
2025-04-27 f46786f11c5c08ead7501a82e5a71430ad69b782
miniprogram_npm/tdesign-miniprogram/fab/type.d.ts
@@ -1,13 +1,19 @@
import { ButtonProps } from '../button/index';
export interface TdFabProps {
    buttonProps?: {
        type: ObjectConstructor;
        value?: object;
        value?: ButtonProps;
    };
    style?: {
    draggable?: {
        type: BooleanConstructor;
        optionalTypes: Array<StringConstructor>;
        value?: boolean | 'all' | 'vertical' | 'horizontal';
    };
    icon?: {
        type: StringConstructor;
        value?: string;
    };
    icon?: {
    style?: {
        type: StringConstructor;
        value?: string;
    };
@@ -15,4 +21,8 @@
        type: StringConstructor;
        value?: string;
    };
    usingCustomNavbar?: {
        type: BooleanConstructor;
        value?: boolean;
    };
}