Skip to content

Commit

Permalink
feat: add music.songName (#996)
Browse files Browse the repository at this point in the history
Co-authored-by: Wing Leung Choi <wchoi@and.digital>
  • Loading branch information
wingleungchoi and Wing Leung Choi committed May 25, 2022
1 parent c95826f commit ccd2959
Show file tree
Hide file tree
Showing 5 changed files with 1,041 additions and 1 deletion.
5 changes: 5 additions & 0 deletions src/definitions/music.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,9 @@ export type MusicDefinitions = LocaleEntry<{
* The names of some music genres.
*/
genre: string[];

/**
* The names of some songs.
*/
song_name: string[];
}>;
2 changes: 2 additions & 0 deletions src/locales/en/music/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,10 @@
*/
import type { MusicDefinitions } from '../../..';
import genre from './genre';
import song_name from './song_name';

const music: MusicDefinitions = {
song_name,
genre,
};

Expand Down

0 comments on commit ccd2959

Please sign in to comment.