UNPKG

node-insim

Version:

An InSim library for NodeJS with TypeScript support

13 lines (12 loc) 319 B
import { Packet } from './base'; import { PacketType } from './enums'; /** * PLayer Leave race (spectate - removed from player list) */ export declare class IS_PLL extends Packet { readonly Size = 4; readonly Type = PacketType.ISP_PLL; readonly ReqI = 0; /** Player's unique id */ PLID: number; }