aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/models/PokeApiModel.ts
blob: 9ccdb22dd464afdec76c8421a0b22555285510c9 (plain) (blame)
1
2
3
4
5
6
export interface PokeApiModel {
	count: number;
	next: string | null;
	previous: string | null;
	results: ({ name: string; url: string; } & { index: number; })[];
}
(git 2.53.0) at 2026-05-15 08:28:30 +0000