UNPKG

@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.

8 lines (7 loc) 260 B
import { BehaviorSubject } from "rxjs"; export interface LoaderConfigInterface { progress?: BehaviorSubject<number>; dismiss: BehaviorSubject<boolean>; typeLoader: "buffer" | "determinate" | "query" | "indeterminate"; message: string; }