mirror of
https://github.com/tcgdex/javascript-sdk.git
synced 2025-04-22 10:42:10 +00:00
23 lines
414 B
TypeScript
23 lines
414 B
TypeScript
import { SetSimple } from "./Set";
|
|
import { List } from "./General";
|
|
import LangList from "./LangList";
|
|
|
|
export type ExpansionSingle = {
|
|
code: string
|
|
name: string
|
|
sets: Array<SetSimple>
|
|
}
|
|
|
|
export type ExpansionSimple = {
|
|
code: string
|
|
name: string
|
|
}
|
|
|
|
export type ExpansionList = List<ExpansionSimple>
|
|
|
|
export default interface Expansion {
|
|
name: LangList<string> | string
|
|
code: string
|
|
sets?: Array<string>
|
|
}
|