mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
15 lines
165 B
TypeScript
15 lines
165 B
TypeScript
import { Serie } from '../interfaces'
|
|
|
|
const set: Serie = {
|
|
id: "xy",
|
|
name: {
|
|
en: "XY",
|
|
fr: "XY",
|
|
es: "XY",
|
|
it: "XY",
|
|
de: "XY"
|
|
},
|
|
}
|
|
|
|
export default set
|