mirror of
https://github.com/FlipsideCrypto/DefinitelyTyped.git
synced 2026-02-06 19:07:08 +00:00
10 lines
238 B
TypeScript
10 lines
238 B
TypeScript
import * as Symphony from 'symphony-api-client-node';
|
|
|
|
Symphony.initBot('/config.json')
|
|
.then((authTokens: Symphony.AuthInfo) => {
|
|
console.log(authTokens);
|
|
})
|
|
.catch((err: any) => {
|
|
console.error(err);
|
|
});
|