Files
est-frame/node_modules/react-player/twitch.d.ts
2025-10-22 05:38:27 +00:00

13 lines
324 B
TypeScript
Executable File

import BaseReactPlayer, { BaseReactPlayerProps } from './base'
export interface TwitchConfig {
options?: Record<string, any>
playerId?: string
}
export interface TwitchPlayerProps extends BaseReactPlayerProps {
config?: TwitchConfig
}
export default class TwitchPlayer extends BaseReactPlayer<TwitchPlayerProps> {}