UNPKG

@ohd-tools/rcon

Version:

An RCON Interface for Operation: Harsh Doorstop

15 lines (14 loc) 493 B
import { PlayerChat } from './definitions/PlayerChat'; import { OHD } from './OHD'; import { Player } from './Player'; export declare class Message { created: PlayerChat['time']; channel: PlayerChat['channel']; steam64: PlayerChat['player_id']; message: PlayerChat['message']; private _user; protected _controller: OHD; constructor(controller?: OHD | PlayerChat | null, $b?: PlayerChat); get User(): Player | null; protected get hasController(): boolean; }