Project

General

Profile

1
/**
2
 * @license
3
 * Copyright Google Inc. 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
import { MissingTranslationStrategy, ViewEncapsulation } from '@angular/core';
9
export declare class CompilerConfig {
10
    defaultEncapsulation: ViewEncapsulation | null;
11
    enableLegacyTemplate: boolean;
12
    useJit: boolean;
13
    missingTranslation: MissingTranslationStrategy | null;
14
    preserveWhitespaces: boolean;
15
    constructor({defaultEncapsulation, useJit, missingTranslation, enableLegacyTemplate, preserveWhitespaces}?: {
16
        defaultEncapsulation?: ViewEncapsulation;
17
        useJit?: boolean;
18
        missingTranslation?: MissingTranslationStrategy;
19
        enableLegacyTemplate?: boolean;
20
        preserveWhitespaces?: boolean;
21
    });
22
}
23
export declare function preserveWhitespacesDefault(preserveWhitespacesOption: boolean | null, defaultSetting?: boolean): boolean;
(13-13/54)