UNPKG

chordproject-parser

Version:

A TypeScript library for parsing and formatting ChordPro songs.

8 lines (7 loc) 183 B
import { Line } from "./Line"; export declare class CommentLine extends Line { clone(): Line; get comment(): string; private _comment; constructor(comment: string); }