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