Skip to content

Instantly share code, notes, and snippets.

@whoisryosuke
Created January 27, 2024 01:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save whoisryosuke/d64353fc74130edf86b4e843f9743517 to your computer and use it in GitHub Desktop.
Save whoisryosuke/d64353fc74130edf86b4e843f9743517 to your computer and use it in GitHub Desktop.
Typescript - Music Notation types using new template literal feature
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