javascript-sdk/interfaces/AbilityType.ts
Florian Bouillon 53afc67b72
Updated Interfaces
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2020-03-11 11:02:24 +01:00

20 lines
249 B
TypeScript

export interface AbilityTypeSimple {
id: AbilityType
name: string
}
export type AbilityTypeSingle = {
id: AbilityType
name: string
cards: string
}
enum AbilityType {
POKEBODY,
POKEPOWER,
TALENT,
ANCIENTTRAIT
}
export default AbilityType