import { StatusResponse } from '../types'; /** * Parses the response from the rcon command status * @param {string} statusString string with the server response * @returns {Object} An object containing the server status and a * playersArray containing player objects */ export default function parseStatusResponseToJs(statusString: string): StatusResponse;