UNPKG

typesxml

Version:

Open source XML library written in TypeScript

29 lines (28 loc) 1.25 kB
/******************************************************************************* * Copyright (c) 2023 - 2024 Maxprograms. * * This program and the accompanying materials * are made available under the terms of the Eclipse License 1.0 * which accompanies this distribution, and is available at * https://www.eclipse.org/org/documents/epl-v10.html * * Contributors: * Maxprograms - initial API and implementation *******************************************************************************/ export declare class Constants { static readonly DOCUMENT_NODE: number; static readonly ELEMENT_NODE: number; static readonly ATTRIBUTE_NODE: number; static readonly CDATA_SECTION_NODE: number; static readonly COMMENT_NODE: number; static readonly PROCESSING_INSTRUCTION_NODE: number; static readonly TEXT_NODE: number; static readonly ENTITY_DECL_NODE: number; static readonly XML_DECLARATION_NODE: number; static readonly ATTRIBUTE_LIST_DECL_NODE: number; static readonly DOCUMENT_TYPE_NODE: number; static readonly ATTRIBUTE_DECL_NODE: number; static readonly ELEMENT_DECL_NODE: number; static readonly INTERNAL_SUBSET_NODE: number; static readonly NOTATION_DECL_NODE: number; }