* Get emotes for the selected platform * * @version 0.2.5
(platform: StreamerbotPlatform)
| 1096 | return await this.request<ClearCreditsResponse>({ |
| 1097 | request: 'ClearCredits', |
| 1098 | }); |
| 1099 | } |
| 1100 | |
| 1101 | /** |
| 1102 | * Get information about the connected Streamer.bot instance |
| 1103 | */ |
| 1104 | public async getInfo(): Promise<GetInfoResponse> { |
| 1105 | return await this.request<GetInfoResponse>({ |
| 1106 | request: 'GetInfo', |
| 1107 | }); |
| 1108 | } |
| 1109 | |
| 1110 | /** |
| 1111 | * Returns all active viewers and their user information |
| 1112 | */ |
| 1113 | public async getActiveViewers(): Promise<GetActiveViewersResponse> { |
| 1114 | return await this.request<GetActiveViewersResponse>({ |
nothing calls this directly
no outgoing calls
no test coverage detected