chordproject-parser
Version:
A TypeScript library for parsing and formatting ChordPro songs.
11 lines (10 loc) • 367 B
TypeScript
import { LyricsSectionBase, LyricsType } from "./LyricsSectionBase";
import { Section } from "./Section";
export declare class LyricsSection extends LyricsSectionBase {
clone(): Section;
private _name;
private _value;
get name(): string | null;
get value(): string | null;
constructor(type: LyricsType, name: string, value?: string | null);
}