@typedin/music-utilities
Version:
A set of resources and modules I use to develop music applications.
6 lines (5 loc) • 344 B
TypeScript
import type { Note } from "../types/index.js";
declare function DiminishedFourth(note: Note, direction?: "up" | "down"): Note;
declare function PerfectFourth(note: Note, direction?: "up" | "down"): Note;
declare function AugmentedFourth(note: Note, direction?: "up" | "down"): Note;
export { DiminishedFourth, PerfectFourth, AugmentedFourth };