UNPKG

@dlr-eoc/core-ui

Version:

This project includes schematics to add the base UKIS-Layout to an angular application. The Layout is based on Clarity so [add this first](https://clarity.design/get-started/developing/angular)!

19 lines (18 loc) 502 B
import * as i0 from "@angular/core"; export interface IAlert { type: string | 'info'; text: string; closeable: boolean; actions?: { title: string; callback: () => void; }[]; } export declare class AlertService { private alertSource; alert$: import("rxjs").Observable<IAlert>; constructor(); alert(alert: IAlert): void; static ɵfac: i0.ɵɵFactoryDeclaration<AlertService, never>; static ɵprov: i0.ɵɵInjectableDeclaration<AlertService>; }