import { TemplateRef } from '@angular/core'; /** angular ngClass 绑定类型 */ export declare type NgClassInterface = string | string[] | Set | { [className: string]: boolean; }; /** angular ngStyle 绑定类型 */ export interface NgStyleInterface { [attr: string]: string | number; } /** string和TemplateRef的连接类型。 */ export declare type NgStringOrTemplateRef = string | TemplateRef;