UNPKG

osmd-extended

Version:

Private / sponsor exclusive OSMD mirror/audio player.

7 lines (6 loc) 347 B
import { Pitch } from "../../Common/DataObjects/Pitch"; import { KeyInstruction } from "../VoiceData/Instructions/KeyInstruction"; export interface ITransposeCalculator { transposePitch(pitch: Pitch, currentKeyInstruction: KeyInstruction, halftones: number): Pitch; transposeKey(keyInstruction: KeyInstruction, transpose: number): void; }