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