import { UUID } from "mongodb"; export default interface Asteroid { id: UUID; name: string; resources: { id: string; amount: number; }[]; }