UNPKG

angular-xml-editor

Version:
17 lines (16 loc) 741 B
export declare class DomDummyNodeManager { static DummyNodeClassName: string; static DummyNodeBeforeFirstTagClassName: string; static DummyNodeContent: string; constructor(); static IsDummyNode(node: Node): boolean; static IsBeforeFirstTagDummyNode(node: Node): boolean; static getPreviousSibling(node: Node): Node; static getNextSibling(node: Node): Node; static getChildNodeCount(node: Node): number; static getFirstChild(node: Node): Node; static getLastChild(node: Node): Node; RemoveAllDummyNodes(node: Node, nodeDepth?: number): void; UpdateDummyNodes(node: Node, nodeDepth?: number): void; createDummyNode(targetDocument: Document, content?: string): Element; }