Something went wrong. Try again.
[WIP] A music bot for Matrix that connects to Element Call enabled channels.
Something went wrong. Try again.
476 B · 23 lines
TypeScript
at main
1234567891011121314151617181920212223import {MatrixClient} from "matrix-js-sdk";
type BotClientConfig = { baseUrl: string, deviceId: string, userId: string}
export class BotClient extends MatrixClient { constructor({baseUrl, deviceId, userId}: BotClientConfig) { super({ baseUrl: baseUrl, deviceId: deviceId, userId: userId, }); }; public start() { !this.startClient({ initialSyncLimit: 10 }) };}