jspurefix
Version:
pure node js fix engine
13 lines (12 loc) • 382 B
TypeScript
import { TagPos } from '../tag/tag-pos';
export interface AsciiSegmentParserSummary {
readonly msgType: string;
readonly tags: TagPos[];
readonly last: number;
readonly msgDefinition: string | undefined;
readonly currentTagPosition: number;
readonly peek: String;
readonly segments: String[];
readonly structureStack: String[];
buffer: string;
}