import { IPSCodeList } from '../../codelist/ipscode-list'; import { IPSDataItem } from '../../data/ipsdata-item'; /** * * 子接口类型识别属性[] * @export * @interface IPSListDataItem */ export interface IPSListDataItem extends IPSDataItem { /** * 前端代码表 * * @type {IPSCodeList} */ getFrontPSCodeList(): IPSCodeList | null; /** * 前端代码表 * * @type {IPSCodeList} */ get frontPSCodeList(): IPSCodeList | null; /** * 前端代码表(必须存在) * * @type {IPSCodeList} */ getFrontPSCodeListMust(): IPSCodeList; /** * 数据分组项 * @type {string} */ groupItem: string; /** * 脚本代码 * @type {string} */ scriptCode: string; /** * 脚本代码模式 * @type {boolean} * @default false */ customCode: boolean; } //# sourceMappingURL=ipslist-data-item.d.ts.map