aboutsummaryrefslogtreecommitdiff
path: root/src/definitions/music.ts
blob: 9b60e2272bad7fb8a86f3ded88d975b515bda0df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
import type { LocaleEntry } from './definitions';

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

  /**
   * The names of some artists.
   */
  artist: string[];

  /**
   * The names of some music genres.
   */
  genre: string[];

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