UNPKG

@angular/flex-layout

Version:
27 lines (26 loc) 944 B
/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license */ import { InjectionToken } from '@angular/core'; import { Multiplier } from '../multiply/multiplier'; /** a set of configuration options for FlexLayoutModule */ export interface LayoutConfigOptions { addFlexToParent?: boolean; addOrientationBps?: boolean; disableDefaultBps?: boolean; disableVendorPrefixes?: boolean; serverLoaded?: boolean; useColumnBasisZero?: boolean; printWithBreakpoints?: string[]; mediaTriggerAutoRestore?: boolean; ssrObserveBreakpoints?: string[]; multiplier?: Multiplier; defaultUnit?: string; detectLayoutDisplay?: boolean; } export declare const DEFAULT_CONFIG: Required<LayoutConfigOptions>; export declare const LAYOUT_CONFIG: InjectionToken<LayoutConfigOptions>;