blob: f28148bfa47cfb81635a7ce9e5b5f959dc600fb3 (
plain)
1
2
3
4
5
|
export type ImageRendering = "auto" | "crisp-edges" | "pixelated";
export type GameType = { id: number, card_img: string, char_img: string, title_img: string, img_rendering: ImageRendering, titleSlug: string };
export type GameCardProps = { link: string, game: GameType };
|