pmgo-pokedex
Version:
Provide Pokemon GO pokedex data and useful translation.
33 lines (28 loc) • 518 B
text/typescript
export interface PokemonName {
no: number;
'en-US': string;
'zh-TW': string;
'zh-CN': string;
}
export interface Pokemon {
no: number;
name: string;
form: string | null;
types: string[];
}
export interface PokemonForm {
no: number;
name: string;
'en-US'?: string;
'zh-TW'?: string;
}
export interface Region {
patterns: string[];
'en-US': string;
'zh-TW': string;
}
export interface Type {
patterns: string[];
'en-US': string;
'zh-TW': string;
}