13 lines
324 B
TypeScript
Executable File
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> {}
|