Initial frontend draft

This commit is contained in:
Fishandchips321 2025-12-22 18:10:28 +00:00
parent 1606d1faf0
commit b6293beeec
21 changed files with 4105 additions and 150 deletions

View file

@ -0,0 +1,15 @@
import type Library from "./Library";
export default interface Item {
name: string;
id: string;
library?: Library;
servers: Array<string>;
type: ItemType;
}
export enum ItemType {
Movie,
TvShow,
Music,
}