UNPKG

@twurple/api

Version:

Interact with Twitch's API.

29 lines 777 B
import { type HelixPagination } from '../../utils/pagination/HelixPagination.js'; import { type HelixVideoFilterPeriod, type HelixVideoSort, type HelixVideoType } from './video.external.js'; /** * Filters for the videos request. */ export interface HelixVideoFilter { /** * The language of the videos. */ language?: string; /** * The period of time when the videos were created. */ period?: HelixVideoFilterPeriod; /** * The value to order the videos by. */ orderBy?: HelixVideoSort; /** * The type of the videos. */ type?: HelixVideoType | 'all'; } /** * @inheritDoc */ export interface HelixPaginatedVideoFilter extends HelixVideoFilter, HelixPagination { } //# sourceMappingURL=video.input.d.ts.map