import type Library from "./Library"; export default interface Item { name: string; id: string; library?: Library; servers: Array; type: ItemType; } export enum ItemType { Movie, TvShow, Music, }