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

12 lines
312 B
TypeScript
Executable File

import BaseReactPlayer, { BaseReactPlayerProps } from './base'
export interface VidyardConfig {
options?: Record<string, object>
}
export interface VidyardPlayerProps extends BaseReactPlayerProps {
config?: VidyardConfig
}
export default class VidyardPlayer extends BaseReactPlayer<VidyardPlayerProps> {}