mtgetk/encoded.ts

12 lines
196 B
TypeScript
Raw Permalink Normal View History

2019-09-02 15:49:41 +00:00
export interface ECard {
text: string;
cost?: string;
name: string;
types: string[];
supertypes?: string[];
loyalty?: string;
subtypes?: string[];
pt?: string;
rarity: string;
}