blob: 7cb0bf3f2c67acc3fd75cf4b1cb5cc92e1c446ad [file] [log] [blame]
/**
* @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';
/** 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[];
}
export declare const DEFAULT_CONFIG: LayoutConfigOptions;
export declare const LAYOUT_CONFIG: InjectionToken<LayoutConfigOptions>;