@tonaljs/voice-leading
Version:
Voice leading logic for transitions between voicings
9 lines (7 loc) • 304 B
text/typescript
declare type VoiceLeadingFunction = (voicings: string[][], lastVoicing: string[]) => string[];
declare const topNoteDiff: VoiceLeadingFunction;
/** @deprecated */
declare const _default: {
topNoteDiff: VoiceLeadingFunction;
};
export { type VoiceLeadingFunction, _default as default, topNoteDiff };