UNPKG

1.02 kBTypeScriptView Raw
1/**
2 * @license
3 * Copyright Google LLC All Rights Reserved.
4 *
5 * Use of this source code is governed by an MIT-style license that can be
6 * found in the LICENSE file at https://angular.io/license
7 */
8import { ModuleWithProviders } from '@angular/core';
9import { LayoutConfigOptions, BreakPoint } from '@angular/flex-layout/core';
10/**
11 * FlexLayoutModule -- the main import for all utilities in the Angular Layout library
12 * * Will automatically provide Flex, Grid, and Extended modules for use in the application
13 * * Can be configured using the static withConfig method, options viewable on the Wiki's
14 * Configuration page
15 */
16export declare class FlexLayoutModule {
17 /**
18 * Initialize the FlexLayoutModule with a set of config options,
19 * which sets the corresponding tokens accordingly
20 */
21 static withConfig(configOptions: LayoutConfigOptions, breakpoints?: BreakPoint | BreakPoint[]): ModuleWithProviders<FlexLayoutModule>;
22 constructor(serverModuleLoaded: boolean, platformId: Object);
23}