mirror of
https://github.com/tcgdex/javascript-sdk.git
synced 2025-04-22 10:42:10 +00:00
20 lines
249 B
TypeScript
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
|