From 09b869284cad8d543cfc6760c1f9a48dbb088c11 Mon Sep 17 00:00:00 2001 From: jeffvli Date: Sun, 13 Feb 2022 01:57:41 -0800 Subject: [PATCH] Add "Play" type --- src/types.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/types.ts b/src/types.ts index 470dc51..e9e8294 100644 --- a/src/types.ts +++ b/src/types.ts @@ -12,6 +12,12 @@ export enum Item { Playlist = 'playlist', } +export enum Play { + Play = 'play', + Next = 'next', + Later = 'later', +} + export type ServerType = Server.Subsonic | Server.Jellyfin; export type APIEndpoints =