From ef1eaa8e1e65b13e8145e1217069b9b61d029924 Mon Sep 17 00:00:00 2001 From: LiuJiaNan <15703339975@163.com> Date: Sat, 15 Nov 2025 11:42:40 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96Signature=E7=AD=BE=E5=AD=97?= =?UTF-8?q?=E7=BB=84=E4=BB=B6=E7=B1=BB=E5=9E=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- components/Signature/index.d.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/components/Signature/index.d.ts b/components/Signature/index.d.ts index 4ba402a..66dbff9 100644 --- a/components/Signature/index.d.ts +++ b/components/Signature/index.d.ts @@ -3,8 +3,10 @@ import type { FC } from "react"; export interface SignatureValue { /** 签字时间,YYYY-MM-DD HH:mm:ss */ time: string; - /** 签字图片的base64编码 */ + /** 签字图片的 base64 编码 */ base64: string; + /** 签字图片的 file 对象 */ + file: File; } export interface SignatureProps {