@koalarx/ui
Version:
Koala UI is a Design System developed in Angular whose objective is to facilitate and make your development faster and simpler, making this framework your greatest ally.
16 lines (15 loc) • 895 B
TypeScript
import { EventEmitter, OnChanges, SimpleChanges } from '@angular/core';
import { KoalaNotificationInterface } from './koala.notification.interface';
import * as i0 from "@angular/core";
export declare class NotificationComponent implements OnChanges {
notifications: KoalaNotificationInterface[];
deleteAll: EventEmitter<boolean>;
delete: EventEmitter<KoalaNotificationInterface>;
private appName;
constructor();
ngOnChanges(changes: SimpleChanges): void;
deleteAllNotifications(): void;
deleteNotification(notification: KoalaNotificationInterface): void;
static ɵfac: i0.ɵɵFactoryDeclaration<NotificationComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<NotificationComponent, "koala-notification-list", never, { "notifications": "notifications"; }, { "deleteAll": "deleteAll"; "delete": "delete"; }, never, never, false>;
}