UNPKG

node-insim

Version:

An InSim library for NodeJS with TypeScript support

18 lines (17 loc) 515 B
import { SendablePacket } from './base'; import { PacketType } from './enums'; import type { PacketDataWithOptionalReqI } from './types'; /** * HostList Request * * To request a host list from the Relay, send this packet. */ export declare class IR_HLR extends SendablePacket { SIZE_MULTIPLIER: number; readonly Size = 4; readonly Type = PacketType.IRP_HLR; ReqI: number; readonly Sp0 = 0; constructor(data?: IR_HLR_Data); } export type IR_HLR_Data = PacketDataWithOptionalReqI<IR_HLR>;