wupengfei
14 小时以前 40aebfcd3f160a59b38c1b1542366e0ddd84bce8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
declare module '@types/fabric/fabric-impl.d.ts' {
  export interface  ITextOptions {
    templateDataParamId?: string;
 
    pageNum?: number;
 
    templateParamType?: EnumContractTemplateValueType;
    recorder?: EnumContractTemplateValueRecorder;
    userType?: EnumUserType;
    /** 变量名称 */
    label?: string;
    /** 变量代码 */
    name?: string;
    /** 是否必填 */
    required?: boolean;
  }
}
 
export {}