blob: d5d9550563e6934a925d6fc6535de95b3426ed5a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
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[];
}>;
|