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

Collecting youtube ids for fetching

This commit is contained in:
Fedor Katurov 2020-04-18 22:33:59 +07:00
parent 8ff9fdd9bd
commit 2b757a07a2
4 changed files with 87 additions and 26 deletions

View file

@ -36,3 +36,8 @@ export const playerSeek = (seek: number) => ({
type: PLAYER_ACTIONS.SEEK,
seek,
});
export const playerGetYoutubeInfo = (url: string) => ({
type: PLAYER_ACTIONS.GET_YOUTUBE_INFO,
url,
});