import { IPSDEFVRSingleCondition } from './ipsdefvrsingle-condition'; /** * * 继承父接口类型值[REGEX] * @export * @interface IPSDEFVRRegExCondition */ export interface IPSDEFVRRegExCondition extends IPSDEFVRSingleCondition { /** * 正则式 * @type {string} */ regExCode: string; }