UNPKG

514 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 { MediaChange } from './media-change';
9import { BreakPoint } from './breakpoints/break-point';
10/**
11 * For the specified MediaChange, make sure it contains the breakpoint alias
12 * and suffix (if available).
13 */
14export declare function mergeAlias(dest: MediaChange, source: BreakPoint | null): MediaChange;