forked from cookpete/react-player
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.d.ts
129 lines (114 loc) · 2.8 KB
/
index.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
import * as React from 'react';
export interface SourceProps {
src: string;
type: string;
}
export interface TrackProps {
kind: string;
src: string;
srcLang: string;
label: string;
default?: boolean;
}
export interface SoundCloudConfig {
options?: Object;
}
export interface YouTubeConfig {
playerVars?: Object;
embedOptions?: Object;
onUnstarted?(): void;
}
export interface FacebookConfig {
appId: string;
version: string;
playerId: string;
}
export interface DailyMotionConfig {
params?: Object;
}
export interface VimeoConfig {
playerOptions?: Object;
}
export interface WistiaConfig {
options?: Object;
playerId?: string;
}
export interface MixcloudConfig {
options?: Object;
}
export interface VidyardConfig {
options?: Object;
}
export interface FileConfig {
attributes?: Object;
tracks?: TrackProps[];
forceVideo?: boolean;
forceAudio?: boolean;
forceHLS?: boolean;
forceDASH?: boolean;
hlsOptions?: Object;
hlsVersion?: string;
dashVersion?: string;
}
export interface TwitchConfig {
options?: Object;
playerId?: string;
}
export interface Config {
soundcloud?: SoundCloudConfig;
youtube?: YouTubeConfig;
facebook?: FacebookConfig;
dailymotion?: DailyMotionConfig;
vimeo?: VimeoConfig;
file?: FileConfig;
wistia?: WistiaConfig;
mixcloud?: MixcloudConfig;
vidyard?: VidyardConfig;
twitch?: TwitchConfig;
}
export interface ReactPlayerProps {
url?: string | string[] | SourceProps[] | MediaStream;
playing?: boolean;
loop?: boolean;
controls?: boolean;
volume?: number;
muted?: boolean;
playbackRate?: number;
width?: string | number;
height?: string | number;
style?: Object;
progressInterval?: number;
playsinline?: boolean;
playIcon?: React.ReactElement;
pip?: boolean;
stopOnUnmount?: boolean;
light?: boolean | string;
wrapper?: any;
config?: Config;
onReady?(player: ReactPlayer): void;
onStart?(): void;
onPlay?(): void;
onPause?(): void;
onBuffer?(): void;
onBufferEnd?(): void;
onEnded?(): void;
onEnablePIP?(): void;
onDisablePIP?(): void;
onError?(error: any, data?: any, hlsInstance?: any, hlsGlobal?: any): void;
onDuration?(duration: number): void;
onSeek?(seconds: number): void;
onProgress?(state: { played: number, playedSeconds: number, loaded: number, loadedSeconds: number }): void;
[otherProps: string]: any;
}
export default class ReactPlayer extends React.Component<ReactPlayerProps, any> {
static canPlay(url: string): boolean;
static canEnablePIP(url: string): boolean;
static addCustomPlayer(player: ReactPlayer): void;
static removeCustomPlayers(): void;
seekTo(amount: number, type?: 'seconds' | 'fraction'): void;
getCurrentTime(): number;
getSecondsLoaded(): number;
getDuration(): number;
getInternalPlayer(key?: string): Object;
showPreview(): void;
}