Update package name for easier use

This commit is contained in:
CptSpaceToaster
2019-10-12 13:42:55 -04:00
parent 5830c35f35
commit 94cfed900d
13 changed files with 28 additions and 90 deletions

View File

@ -1,4 +1,16 @@
export namespace PokemonTCG {
export const API_URL: string = 'https://api.pokemontcg.io';
export const version: string = '1';
}
// Constants
export const API_URL: string = 'https://api.pokemontcg.io';
export const API_VERSION: string = '1';
// Classes
export * from './classes/card';
export * from './classes/set';
export * from './classes/meta';
// Interfaces
export * from './interfaces/ability';
export * from './interfaces/attack';
export * from './interfaces/card';
export * from './interfaces/query';
export * from './interfaces/resistance';
export * from './interfaces/weakness';