@akveo/nga-theme
Version:
@akveo/nga-theme
13 lines (12 loc) • 502 B
TypeScript
/**
* @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 { NgaMediaBreakpoint } from './services/breakpoints.service';
export interface NgaThemeOptions {
name: string;
}
export declare const ngaThemeOptionsToken: InjectionToken<NgaThemeOptions>;
export declare const ngaMediaBreakpointsToken: InjectionToken<NgaMediaBreakpoint[]>;