blob: c030ebf5573b9804e2158b667c75d7071c4a90ad (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
/*
* This file is automatically generated.
* Run 'pnpm run generate:locales' to update.
*/
import type { AnimalDefinition } from '../../..';
import bear from './bear';
import crocodilia from './crocodilia';
import lion from './lion';
import type_ from './type';
const animal: AnimalDefinition = {
bear,
crocodilia,
lion,
type: type_,
};
export default animal;
|