UNPKG

systelab-components

Version:

systelab-components is a set of components that use wide accepted and adopted standard technologies like Angular and Bootstrap, as well as other popular libraries. Please read the ATTRIBUTION.md file for a complete list of dependencies.

10 lines (9 loc) 357 B
import { InjectionToken } from '@angular/core'; import { ToastConfig } from './toast/toast-config'; import { SystelabDialogConfig } from './modal/systelab-dialog-config'; export declare const APP_CONFIG: InjectionToken<AppConfig>; export interface AppConfig { productionMode: boolean; toast?: ToastConfig; dialogConfig?: SystelabDialogConfig; }