UNPKG

@twitchfy/chatbot

Version:

A powerful node module to make your own Twitch ChatBot

12 lines (11 loc) 259 B
import type { BanOptions } from '@twitchfy/helix'; /** * The options to timeout an user. * @extends {BanOptions} */ export interface TimeoutOptions extends BanOptions { /** * The duration of the timeout in seconds. */ duration: number; }