UNPKG

@hidev/udp-rcon

Version:

This node module lets you communicate with a server through the UDP RCON protocol.

9 lines (8 loc) 223 B
/// <reference types="node" /> export declare type EventReturn = string | Buffer; export declare type EventCallback = { (key?: EventReturn): void; }; export declare type Events = { [name: string]: EventCallback; };