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 { TagContentType, TagDefinition } from './tags';
9
export declare class XmlTagDefinition implements TagDefinition {
10
    closedByParent: boolean;
11
    requiredParents: {
12
        [key: string]: boolean;
13
    };
14
    parentToAdd: string;
15
    implicitNamespacePrefix: string;
16
    contentType: TagContentType;
17
    isVoid: boolean;
18
    ignoreFirstLf: boolean;
19
    canSelfClose: boolean;
20
    requireExtraParent(currentParent: string): boolean;
21
    isClosedByChild(name: string): boolean;
22
}
23
export declare function getXmlTagDefinition(tagName: string): XmlTagDefinition;
(21-21/22)