blob: 161a24902f0e2ee06cc902a215e8030a3cf27d47 (
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 { MusicDefinition } from '../../..';
import album from './album';
import artist from './artist';
import genre from './genre';
import song_name from './song_name';
const music: MusicDefinition = {
album,
artist,
genre,
song_name,
};
export default music;
|