UNPKG

isoxml-angular

Version:

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

13 lines (12 loc) 630 B
import { AttachedFile, AttachedFileAttributes } from "../baseEntities"; import { TAGS } from "../baseEntities/constants"; import { ISOXMLManager } from "../ISOXMLManager"; import { Entity, XMLElement } from "../types"; export declare class ExtendedAttachedFile extends AttachedFile { tag: TAGS; fileData: Uint8Array; constructor(attributes: AttachedFileAttributes, isoxmlManager: ISOXMLManager); static fromXML(xml: XMLElement, isoxmlManager: ISOXMLManager, internalId?: string): Promise<Entity>; toXML(): XMLElement; static linkListFromISOXMLManager(isoxmlManager: ISOXMLManager): ExtendedAttachedFile; }