UNPKG

@akveo/nga-theme

Version:
20 lines (19 loc) 750 B
/** * @license * Copyright Akveo. All Rights Reserved. * Licensed under the MIT License. See License.txt in the project root for license information. */ import { ModuleWithProviders } from '@angular/core'; import { NgaThemeOptions } from './theme.options'; import { NgaMediaBreakpoint } from './services/breakpoints.service'; export declare class NgaThemeModule { /** * Main Theme Module * * @param ngaThemeOptions {NgaThemeOptions} Main theme options * @param ngaMediaBreakpoints {NgaMediaBreakpoint} Available media breakpoins * * @returns {ModuleWithProviders} */ static forRoot(ngaThemeOptions: NgaThemeOptions, ngaMediaBreakpoints?: NgaMediaBreakpoint[]): ModuleWithProviders; }