yoyo-ng-modulewindy
Version:
服务于52ABP模板的前端开源的相关组件内容。整合了ng-alain和你NG ZORRO的内容
21 lines (20 loc) • 635 B
TypeScript
import { EventEmitter } from '@angular/core';
import { NoticeItem } from './interface';
export declare class NoticeIconComponent {
data: NoticeItem[];
/** 图标上的消息总数 */
count: any;
private _count;
/** 弹出卡片加载状态 */
loading: any;
private _loading;
select: EventEmitter<any>;
clear: EventEmitter<string>;
/** 手动控制Popover显示 */
popoverVisible: any;
private _popoverVisible;
popoverVisibleChange: EventEmitter<boolean>;
onVisibleChange(result: boolean): void;
onSelect(i: any): void;
onClear(title: string): void;
}