UNPKG

chordproject-parser

Version:

A TypeScript library for parsing and formatting ChordPro songs.

16 lines (15 loc) 399 B
import { Line } from "../lines/Line"; import { Section } from "./Section"; export declare enum LyricsType { Chorus = "chorus", Verse = "verse", Bridge = "bridge", Custom = "custom", None = "none" } export declare abstract class LyricsSectionBase extends Section { get type(): LyricsType; private _type; constructor(type: LyricsType); addLine(line: Line): void; }