From 5a678cce1b157411f20fbddfaed49c7bc8d9fba7 Mon Sep 17 00:00:00 2001
From: riku <risaku@163.com>
Date: 星期四, 07 十一月 2024 17:03:13 +0800
Subject: [PATCH] 修改为生产模式

---
 miniprogram_npm/tdesign-miniprogram/fab/type.d.ts |   16 +++++++++++++---
 1 files changed, 13 insertions(+), 3 deletions(-)

diff --git a/miniprogram_npm/tdesign-miniprogram/fab/type.d.ts b/miniprogram_npm/tdesign-miniprogram/fab/type.d.ts
index 76d4ed8..a573bc1 100644
--- a/miniprogram_npm/tdesign-miniprogram/fab/type.d.ts
+++ b/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;
+    };
 }

--
Gitblit v1.9.3