UNPKG

@twurple/api

Version:

Interact with Twitch's API.

9 lines (8 loc) 217 B
import { extractUserId } from '@twurple/common'; /** @internal */ export function createWhisperQuery(from, to) { return { from_user_id: extractUserId(from), to_user_id: extractUserId(to), }; }