Update set definition

This commit is contained in:
CptSpaceToaster
2019-07-06 15:45:24 -04:00
parent a084077543
commit 0de4a8384d
2 changed files with 16 additions and 13 deletions

View File

@ -4,14 +4,16 @@ import { IQuery } from '../interfaces/query';
export class Set implements ISet {
code: string;
name: string;
series: string;
totalCards: number;
standardLegal: boolean;
expandedLegal: boolean;
releaseDate: string;
symbolUrl: string;
logoUrl: string;
name: string;
ptcgoCode: string;
releaseDate: string;
series: string;
standardLegal: boolean;
symbolUrl: string;
totalCards: number;
updatedAt: string;
constructor() {}
@ -39,5 +41,4 @@ export class Set implements ISet {
return response;
});
}
}

View File

@ -1,11 +1,13 @@
export interface ISet {
code: string;
name: string;
series: string;
totalCards: number;
standardLegal: boolean;
expandedLegal: boolean;
releaseDate: string;
symbolUrl: string;
logoUrl: string;
name: string;
ptcgoCode: string;
releaseDate: string;
series: string;
standardLegal: boolean;
symbolUrl: string;
totalCards: number;
updatedAt: string;
}