UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser

15 lines (14 loc) 294 B
/** * Describes whether peg is static or floats * - Tag: 835 * - FIX Specification type: int * - Mapped type: number * @readonly * @public */ export declare const PegMoveType: Readonly<{ /** Floating (default) */ readonly Floating: 0; /** Fixed */ readonly Fixed: 1; }>;