node-insim
Version:
An InSim library for NodeJS with TypeScript support
17 lines (16 loc) • 475 B
TypeScript
import { SendablePacket } from './base';
import { PacketType } from './enums';
import type { PacketDataWithOptionalReqI } from './types';
/**
* Admin Request
*
* To request if we are an admin, send this packet.
*/
export declare class IR_ARQ extends SendablePacket {
readonly Size = 4;
readonly Type = PacketType.IRP_ARQ;
ReqI: number;
readonly Sp0 = 0;
constructor(data?: IR_ARQ_Data);
}
export type IR_ARQ_Data = PacketDataWithOptionalReqI<IR_ARQ>;