UNPKG

791 BTypeScriptView 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 { InjectionToken } from '@angular/core';
9/** a set of configuration options for FlexLayoutModule */
10export interface LayoutConfigOptions {
11 addFlexToParent?: boolean;
12 addOrientationBps?: boolean;
13 disableDefaultBps?: boolean;
14 disableVendorPrefixes?: boolean;
15 serverLoaded?: boolean;
16 useColumnBasisZero?: boolean;
17 printWithBreakpoints?: string[];
18 mediaTriggerAutoRestore?: boolean;
19 ssrObserveBreakpoints?: string[];
20}
21export declare const DEFAULT_CONFIG: LayoutConfigOptions;
22export declare const LAYOUT_CONFIG: InjectionToken<LayoutConfigOptions>;