diff --git a/src/classes/meta.ts b/src/classes/meta.ts index 5450b16..ffc29d6 100644 --- a/src/classes/meta.ts +++ b/src/classes/meta.ts @@ -2,18 +2,22 @@ import { Client } from '../client'; export class Meta { static async allTypes(): Promise { - return Client.get('types'); + const resposne = await Client.get('types'); + return resposne; } static async allSubtypes(): Promise { - return Client.get('subtypes'); + const response = await Client.get('subtypes'); + return response; } static async allSupertypes(): Promise { - return Client.get('supertypes'); + const response = await Client.get('supertypes'); + return response; } - static allRarities(): Promise { - return Client.get('rarities'); + static async allRarities(): Promise { + const response = await Client.get('rarities'); + return response; } -} \ No newline at end of file +}