UNPKG

node-insim

Version:

An InSim library for NodeJS with TypeScript support

6 lines (5 loc) 270 B
import type { Receivable, Sendable } from '../types'; import { Struct } from './Struct'; export declare abstract class SendableStruct extends Struct implements Receivable, Sendable { pack(propertyFormatOverrides?: Record<string, string>): Uint8Array<ArrayBuffer>; }