pedromsantos/glenn

View on GitHub
src/primitives/Key.ts

Summary

Maintainability
A
1 hr
Test Coverage
import { PitchPrimitives } from './Pitch';

export type KeyPrimitives = {
  root: PitchPrimitives;
  abbreviation: string;
  accidentals: -6 | -5 | -4 | -3 | -2 | -1 | 0 | 1 | 2 | 3 | 4 | 5 | 6;
  type: 'M' | 'm';
};