@ux-aspects/ux-aspects
Version:
Open source user interface framework for building modern, responsive, mobile big data applications
18 lines (17 loc) • 773 B
TypeScript
import { ModuleWithProviders } from '@angular/core';
import { ColorSet } from './color-sets/index';
import * as i0 from "@angular/core";
export declare class ColorServiceModule {
/**
* The function allows the consuming applications to specify the applications
* color set once in the app module, eg:
* ```
* ColorServiceModule.forRoot(colorSets.microFocus);
* ```
* @param colorSet The color set the application should use
*/
static forRoot(colorSet: ColorSet): ModuleWithProviders<ColorServiceModule>;
static ɵfac: i0.ɵɵFactoryDeclaration<ColorServiceModule, never>;
static ɵmod: i0.ɵɵNgModuleDeclaration<ColorServiceModule, never, never, never>;
static ɵinj: i0.ɵɵInjectorDeclaration<ColorServiceModule>;
}