Files
DefinitelyTyped/types/steam/steam-tests.ts
2017-03-24 14:27:52 -07:00

14 lines
400 B
TypeScript

// Type definitions for steam
// Project: https://github.com/seishun/node-steam
// Definitions by: Andrey Kurdyumov <https://github.com/kant2002>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
import Steam = require("steam");
var bot = new Steam.SteamClient();
bot.logOn({
accountName: 'username',
password: 'password'
});
bot.on('loggedOn', function () { /* ... */ });