@wufengteam/wform
Version:
@wufengteam/wform
35 lines (34 loc) • 770 B
TypeScript
import type { SubFormField } from './type';
export interface RowColumn {
/**
* 字段编码
*/
attrCode: string;
/**
* 字段名称
*/
attrName?: string;
/**
* 选项类型的字段的选项存储的静态编码
*/
staticCode?: string;
/**
* 字段所属组件类型
*/
compType?: string;
/**
* 字段填写说明
*/
desc?: string;
/**
* 时间格式类型
*/
assignRuleObj?: string;
/**
* 树选择组件是否多选
*/
multiple?: boolean;
}
export declare const getRowColumns: (data: SubFormField[], ignoreCompType?: string[]) => RowColumn[];
export declare const WFORMCOMPTYPE: string[];
export declare const EXPORTIGNORECOMPTYPE: string[];