javascript-sdk/interfaces/Illustrator.ts
Florian Bouillon 53afc67b72
Updated Interfaces
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2020-03-11 11:02:24 +01:00

23 lines
365 B
TypeScript

import { CardSimple } from "./Card";
import { List } from "./General";
export type IllustratorSingle = {
id: number,
name: string,
cards: Array<CardSimple>
}
export interface IllustratorSimple {
id: number
name: string
}
export type IllustratorsList = List<IllustratorSimple>
interface Illustrator {
id: number
name: string
}
export default Illustrator