DefinitelyTyped/types/gamedig/gamedig-tests.ts
Ivan Sieder - SiMedia f316ca3d15 added gamedig typings
2018-08-28 15:37:31 +02:00

19 lines
250 B
TypeScript

import Gamedig = require("gamedig");
Gamedig.query({
type: "tf2",
host: "127.0.0.1"
}, (error, state) => {
if (error) throw error();
const {
name,
map,
password,
maxplayers,
players,
bots,
notes
} = state;
});