UNPKG

node-insim

Version:

An InSim library for NodeJS with TypeScript support

11 lines (10 loc) 418 B
import type { PacketType } from '../enums'; import type { Receivable, Sendable } from '../types'; import { Packet } from './Packet'; export declare abstract class SendablePacket extends Packet implements Receivable, Sendable { abstract Size: number; abstract Type: PacketType; abstract ReqI: number; /** @ignore */ pack(propertyFormatOverrides?: Record<string, string>): Uint8Array<ArrayBuffer>; }