source: trip-planner-front/node_modules/@angular/compiler/src/ml_parser/tags.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: 1.1 KB
Line 
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 */
8export declare enum TagContentType {
9 RAW_TEXT = 0,
10 ESCAPABLE_RAW_TEXT = 1,
11 PARSABLE_DATA = 2
12}
13export interface TagDefinition {
14 closedByParent: boolean;
15 implicitNamespacePrefix: string | null;
16 isVoid: boolean;
17 ignoreFirstLf: boolean;
18 canSelfClose: boolean;
19 preventNamespaceInheritance: boolean;
20 isClosedByChild(name: string): boolean;
21 getContentType(prefix?: string): TagContentType;
22}
23export declare function splitNsName(elementName: string): [string | null, string];
24export declare function isNgContainer(tagName: string): boolean;
25export declare function isNgContent(tagName: string): boolean;
26export declare function isNgTemplate(tagName: string): boolean;
27export declare function getNsPrefix(fullName: string): string;
28export declare function getNsPrefix(fullName: null): null;
29export declare function mergeNsAndName(prefix: string, localName: string): string;
Note: See TracBrowser for help on using the repository browser.