UNPKG

@twurple/api

Version:

Interact with Twitch's API.

9 lines (8 loc) 233 B
import { extractUserId } from '@twurple/common'; /** @internal */ export function createRaidStartQuery(from, to) { return { from_broadcaster_id: extractUserId(from), to_broadcaster_id: extractUserId(to), }; }