aboutsummaryrefslogtreecommitdiff
path: root/src/definitions/music.ts
blob: 46c294a5cf84fb342d336d6ebe56e83ad594565b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import type { LocaleEntry } from './definitions';

/**
 * The possible definitions related to music.
 */
export type MusicDefinition = LocaleEntry<{
  /**
   * The names of some music genres.
   */
  genre: string[];

  /**
   * The names of some songs.
   */
  song_name: string[];
}>;