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