UNPKG

isoxml-angular

Version:

JavaScript library to parse and generate ISOXML (ISO11783-10) files

22 lines (21 loc) 810 B
import { TAGS } from './constants'; import { ISOXMLManager } from '../ISOXMLManager'; import { XMLElement } from '../types'; import { Entity, EntityConstructor } from '../types'; export type CodedCommentGroupAttributes = { CodedCommentGroupDesignator: string; ProprietaryAttributes?: { [name: string]: string; }; ProprietaryTags?: { [tag: string]: XMLElement[]; }; }; export declare class CodedCommentGroup implements Entity { attributes: CodedCommentGroupAttributes; isoxmlManager: ISOXMLManager; tag: TAGS; constructor(attributes: CodedCommentGroupAttributes, isoxmlManager: ISOXMLManager); static fromXML(xml: XMLElement, isoxmlManager: ISOXMLManager, internalId?: string, targetClass?: EntityConstructor): Promise<Entity>; toXML(): XMLElement; }