UNPKG

@ozarkoc/chordpro-parser

Version:

A browser-friendly bundled version of chordproject-parser

11 lines (10 loc) 367 B
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); }