UNPKG

node-insim

Version:

An InSim library for NodeJS with TypeScript support

15 lines (14 loc) 331 B
import { Packet } from './base'; import { PacketType } from './enums'; /** * Admin Response * * The Relay will reply to admin status request. */ export declare class IR_ARP extends Packet { readonly Size = 4; readonly Type = PacketType.IRP_ARP; ReqI: number; /** 0 - no admin; 1 - admin */ Admin: number; }