jspurefix
Version:
pure node js fix engine
11 lines (10 loc) • 422 B
TypeScript
import { FixDefinitions } from '../../dictionary/definition';
import { Structure } from '../structure';
import { Tags } from '../tags';
export declare class AsciiSegmentParser {
readonly definitions: FixDefinitions;
private readonly headerDefinition;
private readonly trailerDefinition;
constructor(definitions: FixDefinitions);
parse(msgType: string, tags: Tags, last: number): Structure;
}