@tonaljs/voicing
Version:
Voicings and Voice Leading for Chords
20 lines (17 loc) • 778 B
TypeScript
import * as _tonaljs_voice_leading from '@tonaljs/voice-leading';
declare function get(chord: string, range?: string[], dictionary?: {
[symbol: string]: string[];
}, voiceLeading?: _tonaljs_voice_leading.VoiceLeadingFunction, lastVoicing?: string[]): string[];
declare function search(chord: string, range?: string[], dictionary?: {
[symbol: string]: string[];
}): string[][];
declare function sequence(chords: string[], range?: string[], dictionary?: {
[symbol: string]: string[];
}, voiceLeading?: _tonaljs_voice_leading.VoiceLeadingFunction, lastVoicing?: string[]): string[][];
/** @deprecated */
declare const _default: {
get: typeof get;
search: typeof search;
sequence: typeof sequence;
};
export { _default as default, get, search, sequence };