import * as apiTypes from "./api/types"; export type userDetails = { username: string; userId: number; bricks: number; getAvatar: () => Promise | Promise<"disabled">; }; export interface cacheInterface { favoritedPlaces: never[]; bestFriends: never[]; inventory: never[]; userIDs: Record; avatars: Record; items: Record; placeRevenue: Record; ownerCount: Record; [key: string]: any; } export interface cacheMetadata { favoritedPlaces: number; [key: string]: any; }