UNPKG

800 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 { InjectionToken } from '@angular/core';
9/**
10 * Find all of the server-generated stylings, if any, and remove them
11 * This will be in the form of inline classes and the style block in the
12 * head of the DOM
13 */
14export declare function removeStyles(_document: Document, platformId: Object): () => void;
15/**
16 * Provider to remove SSR styles on the browser
17 */
18export declare const BROWSER_PROVIDER: {
19 provide: InjectionToken<(() => void)[]>;
20 useFactory: typeof removeStyles;
21 deps: InjectionToken<Object>[];
22 multi: boolean;
23};
24export declare const CLASS_NAME = "flex-layout-";
25
\No newline at end of file