Skip to content

Commit

Permalink
feat(music): add album and artist methods (#2620)
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremyhofer committed Apr 29, 2024
1 parent 91a4d3d commit f682750
Show file tree
Hide file tree
Showing 7 changed files with 1,994 additions and 2 deletions.
10 changes: 10 additions & 0 deletions src/definitions/music.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,16 @@ 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.
*/
Expand Down
Loading

0 comments on commit f682750

Please sign in to comment.