1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-04-26 13:26:40 +07:00

player seeking

This commit is contained in:
Fedor Katurov 2019-10-13 19:09:44 +07:00
parent 69ff9a7652
commit f445882a61
7 changed files with 48 additions and 12 deletions

View file

@ -18,3 +18,8 @@ export const playerPlay = () => ({
export const playerPause = () => ({
type: PLAYER_ACTIONS.PAUSE,
});
export const playerSeek = (seek: number) => ({
type: PLAYER_ACTIONS.SEEK,
seek,
});