import { UUID } from "crypto"; export type Jogo = { id: UUID, nome: string, estado: Estado }; export type Estado = 'NOVO' | 'JOGUEI' | 'SATISFEITO';