mirror of
https://github.com/streamyfin/streamyfin.git
synced 2026-01-31 15:38:08 +00:00
11 lines
292 B
TypeScript
11 lines
292 B
TypeScript
import { atom } from "jotai";
|
|
import type { SavedServer } from "@/utils/secureCredentials";
|
|
|
|
export type TVServerActionModalState = {
|
|
server: SavedServer;
|
|
onLogin: () => void;
|
|
onDelete: () => void;
|
|
} | null;
|
|
|
|
export const tvServerActionModalAtom = atom<TVServerActionModalState>(null);
|