JellyGlass/frontend/app/Models/Library.ts

8 lines
No EOL
148 B
TypeScript

import type Item from "./Item";
export default interface Library {
name: string;
id: string;
servers: Array<string>;
items?: Array<Item>;
}