mirror of
https://github.com/tcgdex/javascript-sdk.git
synced 2025-08-06 12:21:57 +00:00
24
interfaces/Illustrator.ts
Normal file
24
interfaces/Illustrator.ts
Normal file
@@ -0,0 +1,24 @@
|
||||
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
|
Reference in New Issue
Block a user