diff options
| author | Jeremy Hofer <[email protected]> | 2024-04-29 05:24:45 -0400 |
|---|---|---|
| committer | GitHub <[email protected]> | 2024-04-29 11:24:45 +0200 |
| commit | f6827505712f48e448d4d4ef2dc3198e6967bbad (patch) | |
| tree | eb5b438a1675c1fe40142189493c757e97664ab7 /src/definitions | |
| parent | 91a4d3d17ebc3fc4733344670349e4a1c69ce813 (diff) | |
| download | faker-f6827505712f48e448d4d4ef2dc3198e6967bbad.tar.xz faker-f6827505712f48e448d4d4ef2dc3198e6967bbad.zip | |
feat(music): add album and artist methods (#2620)
Diffstat (limited to 'src/definitions')
| -rw-r--r-- | src/definitions/music.ts | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/definitions/music.ts b/src/definitions/music.ts index 46c294a5..9b60e227 100644 --- a/src/definitions/music.ts +++ b/src/definitions/music.ts @@ -5,6 +5,16 @@ import type { LocaleEntry } from './definitions'; */ 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[]; |
