优化Signature签字组件类型
parent
e9ed1a059d
commit
ef1eaa8e1e
|
|
@ -3,8 +3,10 @@ import type { FC } from "react";
|
||||||
export interface SignatureValue {
|
export interface SignatureValue {
|
||||||
/** 签字时间,YYYY-MM-DD HH:mm:ss */
|
/** 签字时间,YYYY-MM-DD HH:mm:ss */
|
||||||
time: string;
|
time: string;
|
||||||
/** 签字图片的base64编码 */
|
/** 签字图片的 base64 编码 */
|
||||||
base64: string;
|
base64: string;
|
||||||
|
/** 签字图片的 file 对象 */
|
||||||
|
file: File;
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface SignatureProps {
|
export interface SignatureProps {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue