mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 11:22:10 +00:00
7 lines
122 B
TypeScript
7 lines
122 B
TypeScript
import LangList from "./LangList";
|
|
|
|
export default interface Expansion {
|
|
name: LangList<string> | string
|
|
code: string
|
|
}
|