fretboard-api
Version:
A kind of API for fretboard diagrams
15 lines (14 loc) • 402 B
TypeScript
import { ShapeIntervals } from "./shape";
declare function intervalsSimple(intervals: ShapeIntervals): string[];
/**
*
* @param interval
* @param compound
* @returns {string}
*/
declare function intervalText(interval: string, compound?: boolean): string;
export declare const Utils: {
intervalsSimple: typeof intervalsSimple;
intervalText: typeof intervalText;
};
export {};