UNPKG

node-insim

Version:

An InSim library for NodeJS with TypeScript support

28 lines (27 loc) 829 B
import { Packet } from './base'; import { PacketType } from './enums'; /** * AutoX Info * * You can request information about the current layout with this {@link IS_TINY}: * * - ReqI: non-zero (returned in the reply) * - SubT: {@link TINY_AXI} (AutoX Info) * * The information will be sent back in this packet (also sent when a layout is loaded). */ export declare class IS_AXI extends Packet { readonly Size = 40; readonly Type = PacketType.ISP_AXI; /** 0 unless this is a reply to an {@link TINY_AXI} request */ ReqI: number; readonly Zero = 0; /** Autocross start position */ AXStart: number; /** Number of checkpoints */ NumCP: number; /** Number of objects */ NumO: number; /** The name of the layout last loaded (if loaded locally) */ LName: string; }