mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-05-24 05:47:44 +08:00
14 lines
402 B
TypeScript
14 lines
402 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/borisyankov/DefinitelyTyped
|
|
|
|
/// <reference path="steam.d.ts" />
|
|
|
|
var bot = new Steam.SteamClient();
|
|
bot.logOn({
|
|
accountName: 'username',
|
|
password: 'password'
|
|
});
|
|
bot.on('loggedOn', function () { /* ... */ });
|