import { Injectable, ElementRef, TemplateRef } from '@angular/core'; import { tabListItem, validatorListItem } from './verify-detail.interface'; @Injectable() export class VerifyDetailOptions { 'parent'?:ElementRef; 'verifyList':validatorListItem[]; 'verifyType'?:tabListItem[]; 'showType'?:string; 'showList'?:boolean; 'verifyResultTipsTmpl'?:TemplateRef;// 自定义左下角异常信息显示内容模板 }