Skip to content

Commit f682750

Browse files
authored
feat(music): add album and artist methods (#2620)
1 parent 91a4d3d commit f682750

File tree

7 files changed

+1994
-2
lines changed

7 files changed

+1994
-2
lines changed

src/definitions/music.ts

+10
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,16 @@ import type { LocaleEntry } from './definitions';
44
* The possible definitions related to music.
55
*/
66
export type MusicDefinition = LocaleEntry<{
7+
/**
8+
* The names of some albums.
9+
*/
10+
album: string[];
11+
12+
/**
13+
* The names of some artists.
14+
*/
15+
artist: string[];
16+
717
/**
818
* The names of some music genres.
919
*/

0 commit comments

Comments
 (0)