import { ItemType } from "~/Models/Item"; import type Item from "~/Models/Item"; export const FetchItems = async (libraryId: string): Promise> => { return []; } export const FetchItem = async (itemId: string, libraryId: string): Promise => { return { id: "", name: "", servers: [], type: ItemType.Movie, }; }