aboutsummaryrefslogtreecommitdiff
path: root/src/definitions/animal.ts
blob: afa86753c3f64b99511aa0bbd2af6c685a01ca51 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import type { LocaleEntry } from './definitions';

/**
 * The possible definitions related to animals.
 */
export type AnimalDefinition = LocaleEntry<{
  bear: string[];
  bird: string[];
  cat: string[];
  cetacean: string[];
  cow: string[];
  crocodilia: string[];
  dog: string[];
  fish: string[];
  horse: string[];
  insect: string[];
  lion: string[];
  rabbit: string[];
  rodent: string[];
  snake: string[];
  type: string[];
  pet_name: string[];
}>;