This repository has been archived on 2025-06-18. You can view files and clone it, but you cannot make any changes to its state, such as pushing and creating new issues, pull requests or comments.
casino/frontend/src/app/model/Game.ts
Jan-Marlon Leibl eb153f4459
Some checks failed
CI / Get Changed Files (pull_request) Successful in 6s
CI / Checkstyle Main (pull_request) Has been skipped
CI / prettier (pull_request) Successful in 16s
CI / eslint (pull_request) Failing after 43s
CI / test-build (pull_request) Successful in 46s
feat(game): add blackjack game component and routing
2025-03-26 13:26:38 +01:00

6 lines
90 B
TypeScript

export interface Game {
id: string;
name: string;
image: string;
route: string;
}