UNPKG

chordsong

Version:

ChordSong is a simple text format for the notation of lyrics with guitar chords, and an application that renders them to portable HTML pages.

10 lines (9 loc) 309 B
import { Diagram } from './Diagram'; export declare class Chord { name: string; defaultDiagramKey: symbol; diagrams: {}; constructor(name: string, diagram?: Diagram, chordVariant?: string); getDiagram(variant?: string): Diagram; setDiagram(diagram: Diagram, variant?: string): void; }