mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 19:02:10 +00:00
7 lines
80 B
TypeScript
7 lines
80 B
TypeScript
interface Illustrator {
|
|
id: number
|
|
name: string
|
|
}
|
|
|
|
export default Illustrator
|