MCPcopy Create free account
hub / github.com/Streamerbot/client / getEmotes

Method getEmotes

packages/client/src/ws/StreamerbotClient.ts:1098–1111  ·  view source on GitHub ↗

* Get emotes for the selected platform * * @version 0.2.5

(platform: StreamerbotPlatform)

Source from the content-addressed store, hash-verified

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>({

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected