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

12 lines
324 B
TypeScript
Executable File

import BaseReactPlayer, { BaseReactPlayerProps } from './base'
export interface SoundCloudConfig {
options?: Record<string, any>
}
export interface SoundCloudPlayerProps extends BaseReactPlayerProps {
config?: SoundCloudConfig
}
export default class SoundCloudPlayer extends BaseReactPlayer<SoundCloudPlayerProps> {}