-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.ts
29 lines (28 loc) · 807 Bytes
/
index.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
import { Controls } from "./VideoPlayer/Controls";
import { ControlButton } from "./VideoPlayer/Controls/ControlButton";
import {
Container,
ControlComponent,
ControlProps,
Player
} from "./VideoPlayer/Player";
import { ElapsedTime } from "./VideoPlayer/Controls/ElapsedTime";
import { FullScreenToggle } from "./VideoPlayer/Controls/FullScreenToggle";
import { PlayToggle } from "./VideoPlayer/Controls/PlayToggle";
import { ProgressBar } from "./VideoPlayer/Controls/ProgressBar";
import { Time } from "./VideoPlayer/Controls/Time";
import { Volume } from "./VideoPlayer/Controls/Volume/Volume";
export {
Container as PlayerContainer,
Controls,
ControlButton,
ControlComponent,
ControlProps,
FullScreenToggle,
Player,
PlayToggle,
ProgressBar,
Time,
ElapsedTime,
Volume
};