allow to mark episodes as completed

This commit is contained in:
2026-03-12 14:53:44 +03:00
parent 618c034b05
commit 5409167a96
6 changed files with 152 additions and 28 deletions

View File

@@ -1,5 +1,5 @@
import { createContext, useContext } from "react";
import type { EpisodeDetail } from "../api/podcasts";
import type { EpisodeDetail } from "../api/episodes";
export type PlayerStatus = "stopped" | "playing" | "paused";