pedromsantos/glenn

View on GitHub
src/primitives/Pitch.ts

Summary

Maintainability
A
0 mins
Test Coverage
export type PitchPrimitives = {
  name: string;
  naturalName: string;
  value: number;
  accidental: -1 | 0 | 1;
};