UNPKG

669 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 { BreakPoint } from '../break-point';
9export declare const ScreenTypes: {
10 HANDSET: string;
11 TABLET: string;
12 WEB: string;
13 HANDSET_PORTRAIT: string;
14 TABLET_PORTRAIT: string;
15 WEB_PORTRAIT: string;
16 HANDSET_LANDSCAPE: string;
17 TABLET_LANDSCAPE: string;
18 WEB_LANDSCAPE: string;
19};
20/**
21 * Extended Breakpoints for handset/tablets with landscape or portrait orientations
22 */
23export declare const ORIENTATION_BREAKPOINTS: BreakPoint[];