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