pedromsantos/glenn

View on GitHub
src/primitives/Clef.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { OctavePrimitives } from './Note';
import { PitchPrimitives } from './Pitch';

export interface ClefPrimitives {
  pitch: PitchPrimitives;
  octave: OctavePrimitives;
  line: number;
  type: string;
}