UNPKG

rce.js

Version:

A wrapper for Rust Console Edition (RCE) that allows you to use RCON to create integrations.

14 lines (13 loc) 334 B
import type { IKillPlayer } from "../types"; export declare enum PlayerKillType { Natural = "Natural", Entity = "Entity", Player = "Player", Npc = "Npc" } export declare const playerKillData: { id: string; name: string; type: PlayerKillType; }[]; export declare function getKill(ign: string): IKillPlayer;