Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
2020-03-11 09:43:23 +01:00
commit f235c62c58
31 changed files with 1474 additions and 0 deletions

24
interfaces/Illustrator.ts Normal file
View File

@@ -0,0 +1,24 @@
import { CardSimple } from "./Card";
export type IllustratorSingle = {
id: number,
name: string,
cards: Array<CardSimple>
}
export interface IllustratorSimple {
id: number
name: string
}
export interface IllustratorsList {
count: number
list: Array<IllustratorSimple>
}
interface Illustrator {
id: number
name: string
}
export default Illustrator