import { DomSanitizer, SafeUrl } from '@angular/platform-browser'; export declare class WeUILink { private sanitizer; /** * 不显示最右边的箭头。默认为false,即:显示箭头。 */ noPushArrow: boolean; /** * 样式 */ baseCls: string; /** * 额外样式 */ additionalCls: string; /** * 链接 */ href: string; _href: SafeUrl; /** * 设置基本样式 */ readonly itemCls: string; constructor(sanitizer: DomSanitizer); }