UNPKG

x12

Version:
14 lines (11 loc) 265 B
'use strict'; import { Range } from './Positioning'; import { X12Segment } from './X12Segment'; export class X12Element { constructor() { this.range = new Range(); this.value = ''; } range: Range; value: string; }