Updated Readme and Index

Testing exporting a proper interface with the namespace
This commit is contained in:
Bradyn Glines
2018-01-21 16:59:58 -07:00
parent f838d8b4f6
commit 5c1ff275f6
3 changed files with 36 additions and 6 deletions

View File

@ -20,12 +20,14 @@ export namespace PokemonTCG {
export type IAttack = BaseIAttack;
export type IAncientAbility = BaseIAncientAbility;
export type IAbility = BaseIAbility;
export type IQuery = BaseIQuery;
// export type IQuery = BaseIQuery;
export type ISet = BaseISet;
export type ISuperType = BaseISuperType;
export type ISubType = BaseISubType;
export type IType = BaseIType;
export interface IQuery extends BaseIQuery {}
export const Card = BaseCard;
export type Card = BaseCard;