@sotatech/node-fixjs
Version:
FIX Protocol Parser for Node.js
11 lines (10 loc) • 360 B
TypeScript
import { type ISpecSections } from '../../spec/SpecSections';
import type { Field } from '../Field';
import { SectionType } from './SectionType';
export declare class Sections {
sections: ISpecSections[];
cacheMap: Map<string, ISpecSections>;
sectionType: SectionType;
constructor();
processSection(item: Field, sectionId: string): void;
}