13 lines
322 B
TypeScript
Executable File
13 lines
322 B
TypeScript
Executable File
import BaseReactPlayer, { BaseReactPlayerProps } from './base'
|
|
|
|
export interface VimeoConfig {
|
|
playerOptions?: Record<string, any>
|
|
title?: string
|
|
}
|
|
|
|
export interface VimeoPlayerProps extends BaseReactPlayerProps {
|
|
config?: VimeoConfig
|
|
}
|
|
|
|
export default class VimeoPlayer extends BaseReactPlayer<VimeoPlayerProps> {}
|