UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser

11 lines (10 loc) 418 B
import { type ISpecComponents } from '../spec/SpecComponents'; export declare class Components { components: ISpecComponents[]; cacheMap: Map<number, ISpecComponents>; cacheMapByName: Map<string, ISpecComponents>; constructor(); find(componentId: number): ISpecComponents | undefined; findByName(name: string): ISpecComponents | undefined; getTagsByComponentName(name: string): number[]; }