/** * @license * Copyright Akveo. All Rights Reserved. * Licensed under the MIT License. See License.txt in the project root for license information. */ 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 const nbThemeOptionsToken = new InjectionToken('NB_THEME_OPTIONS'); export const nbMediaBreakpointsToken = new InjectionToken('NB_MEDIA_BREAKPOINTS'); export const nbBuiltInJSThemesToken = new InjectionToken('NB_BUILT_IN_THEMES'); export const nbJSThemesToken = new InjectionToken('NB_THEMES');