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,8 @@
import type Item from "./Item";
export default interface Library {
name: string;
id: string;
servers: Array<string>;
items?: Array<Item>;
}