Florian Bouillon f235c62c58
V1
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2020-03-11 09:43:23 +01:00

25 lines
348 B
TypeScript

import { List } from "./General"
import { CardSimple } from "./Card"
export enum Category {
POKEMON,
TRAINER,
ENERGY
}
export default Category
export type CategorySingle = {
id: Category
name: string
cards: Array<CardSimple>
}
export type CategorySimple = {
id: Category
name: string
}
export type CategoryList = List<CategorySimple>