Created
January 27, 2024 01:34
-
-
Save whoisryosuke/d64353fc74130edf86b4e843f9743517 to your computer and use it in GitHub Desktop.
Typescript - Music Notation types using new template literal feature
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export type BaseNote = "C" | "D" | "E" | "F" | "G" | "A" | "B"; | |
export type Octaves = "1" | "2" | "3" | "4" | "5" | "6" | "7"; | |
export type Note = `${BaseNote}${Octaves}`; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment