UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser / AI Agent Trading

16 lines (15 loc) 357 B
/** * Number of Side repeating group instances. * - Tag: 552 * - FIX Specification type: NumInGroup * - Mapped type: number * @readonly * @public */ export declare const NoSides: Readonly<{ /** One Side */ readonly OneSide: 1; /** Both Sides */ readonly BothSides: 2; }>; export type NoSides = (typeof NoSides)[keyof typeof NoSides];