source: trip-planner-front/node_modules/@angular/compiler/src/i18n/serializers/placeholder.d.ts

Last change on this file was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 819 bytes
RevLine 
[6a3a178]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 * Creates unique names for placeholder with different content.
10 *
11 * Returns the same placeholder name when the content is identical.
12 */
13export declare class PlaceholderRegistry {
14 private _placeHolderNameCounts;
15 private _signatureToName;
16 getStartTagPlaceholderName(tag: string, attrs: {
17 [k: string]: string;
18 }, isVoid: boolean): string;
19 getCloseTagPlaceholderName(tag: string): string;
20 getPlaceholderName(name: string, content: string): string;
21 getUniquePlaceholder(name: string): string;
22 private _hashTag;
23 private _hashClosingTag;
24 private _generateUniqueName;
25}
Note: See TracBrowser for help on using the repository browser.