1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-29 19:19:50 +00:00

Updated interfaces

Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
2020-02-08 17:55:29 +01:00
parent 465a616980
commit f805fc09b4
3 changed files with 3 additions and 3 deletions

View File

@ -6,6 +6,7 @@ import Rarity from "./Rarity";
import Attack from "./Attack";
import Illustrator from "./Illutrator";
import Ability from "./Ability";
import Set from "./Set";
interface Card {
@ -55,7 +56,7 @@ interface Card {
set: {
name: string
code: string
}
}| Set
}
export default Card