mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
* fix(i18n): merge retains attributes w/o value * feat(i18n): allow attributes on ng-container (i.e. i18n) * feat(i18n): add an HtmlParser decorator * style: clang format
17 lines
531 B
TypeScript
17 lines
531 B
TypeScript
/**
|
|
* @license
|
|
* Copyright Google Inc. All Rights Reserved.
|
|
*
|
|
* Use of this source code is governed by an MIT-style license that can be
|
|
* found in the LICENSE file at https://angular.io/license
|
|
*/
|
|
|
|
import {OpaqueToken} from '@angular/core';
|
|
|
|
export {HtmlParser} from './html_parser';
|
|
export {MessageBundle} from './message_bundle';
|
|
export {Serializer} from './serializers/serializer';
|
|
export {Xmb} from './serializers/xmb';
|
|
export {Xtb} from './serializers/xtb';
|
|
|
|
export const TRANSLATIONS = new OpaqueToken('Translations');
|