@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)!
16 lines (15 loc) • 472 B
TypeScript
import * as i0 from "@angular/core";
export interface IProgress {
value?: number;
max?: number;
class?: string;
indeterminate?: boolean;
}
export declare class ProgressService {
private progressSource;
progress$: import("rxjs").Observable<IProgress>;
constructor();
progress(progress: IProgress): void;
static ɵfac: i0.ɵɵFactoryDeclaration<ProgressService, never>;
static ɵprov: i0.ɵɵInjectableDeclaration<ProgressService>;
}