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