UNPKG

node-insim

Version:

An InSim library for NodeJS with TypeScript support

9 lines (8 loc) 286 B
import type { PacketType } from '../enums'; import type { Receivable } from '../types'; import { Struct } from './Struct'; export declare abstract class Packet extends Struct implements Receivable { abstract Size: number; abstract Type: PacketType; abstract ReqI: number; }