UNPKG

@ozarkoc/chordpro-parser

Version:

A browser-friendly bundled version of chordproject-parser

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; }