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