UNPKG

773 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 */
8/**
9 * Applies CSS prefixes to appropriate style keys.
10 *
11 * Note: `-ms-`, `-moz` and `-webkit-box` are no longer supported. e.g.
12 * {
13 * display: -webkit-flex; NEW - Safari 6.1+. iOS 7.1+, BB10
14 * display: flex; NEW, Spec - Firefox, Chrome, Opera
15 * // display: -webkit-box; OLD - iOS 6-, Safari 3.1-6, BB7
16 * // display: -ms-flexbox; TWEENER - IE 10
17 * // display: -moz-flexbox; OLD - Firefox
18 * }
19 */
20export declare function applyCssPrefixes(target: {
21 [key: string]: any | null;
22}): {
23 [key: string]: any;
24};