theme-lib
Version:
This is a simple example Angular Library published to npm.
13 lines (12 loc) • 671 B
TypeScript
import { InjectionToken } from '@angular/core';
import { NbMediaBreakpoint } from './services/breakpoints.service';
import { NbJSThemeOptions } from './services/js-themes/theme.options';
export interface NbThemeOptions {
name: string;
}
export declare const NB_THEME_OPTIONS: InjectionToken<NbThemeOptions>;
export declare const NB_MEDIA_BREAKPOINTS: InjectionToken<NbMediaBreakpoint[]>;
export declare const NB_BUILT_IN_JS_THEMES: InjectionToken<NbJSThemeOptions[]>;
export declare const NB_JS_THEMES: InjectionToken<NbJSThemeOptions[]>;
export declare const NB_WINDOW: InjectionToken<Window>;
export declare const NB_DOCUMENT: InjectionToken<Document>;