mirror of
https://github.com/tcgdex/javascript-sdk.git
synced 2025-04-22 10:42:10 +00:00
25 lines
361 B
TypeScript
25 lines
361 B
TypeScript
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
|