isoxml-angular
Version:
JavaScript library to parse and generate ISOXML (ISO11783-10) files
24 lines (23 loc) • 817 B
TypeScript
import { TAGS } from './constants';
import { ISOXMLManager } from '../ISOXMLManager';
import { XMLElement } from '../types';
import { Entity, EntityConstructor } from '../types';
export type ColourRangeAttributes = {
MinimumValue: number;
MaximumValue: number;
Colour: number;
ProprietaryAttributes?: {
[name: string]: string;
};
ProprietaryTags?: {
[tag: string]: XMLElement[];
};
};
export declare class ColourRange implements Entity {
attributes: ColourRangeAttributes;
isoxmlManager: ISOXMLManager;
tag: TAGS;
constructor(attributes: ColourRangeAttributes, isoxmlManager: ISOXMLManager);
static fromXML(xml: XMLElement, isoxmlManager: ISOXMLManager, internalId?: string, targetClass?: EntityConstructor): Promise<Entity>;
toXML(): XMLElement;
}