mirror of
https://github.com/streamyfin/streamyfin.git
synced 2025-08-20 18:37:18 +02:00
11 lines
351 B
TypeScript
11 lines
351 B
TypeScript
import { BaseItemDto } from "@jellyfin/sdk/lib/generated-client/models";
|
|
import { atom } from "jotai";
|
|
|
|
export const playingAtom = atom(false);
|
|
export const fullScreenAtom = atom(false);
|
|
export const showCurrentlyPlayingBarAtom = atom(false);
|
|
export const currentlyPlayingItemAtom = atom<{
|
|
item: BaseItemDto;
|
|
playbackUrl: string;
|
|
} | null>(null);
|