优化Signature签字组件类型

master
LiuJiaNan 2025-11-15 11:42:40 +08:00
parent e9ed1a059d
commit ef1eaa8e1e
1 changed files with 3 additions and 1 deletions

View File

@ -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 {