Skip to content

Commit 49e07d8

Browse files
committed
refactor(mora): use null for track properties
1 parent 6016556 commit 49e07d8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

providers/Mora/json_types.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ export interface PackageMeta {
2121
}
2222

2323
export interface Track {
24-
arranger?: string;
25-
composer?: string;
24+
arranger: string | null;
25+
composer: string | null;
2626
/** Lyricist name */
27-
lyrics?: string;
27+
lyrics: string | null;
2828

2929
artistName: string;
3030
artistNo: number;

0 commit comments

Comments
 (0)