chordproject-parser
Version:
A TypeScript library for parsing and formatting ChordPro songs.
16 lines (15 loc) • 404 B
TypeScript
import { IClonable } from "../IClonable";
export declare enum LineType {
Lyrics = "lyrics",
Comment = "comment",
Empty = "empty",
Custom = "custom",
Tabs = "tabs",
Unknown = "unknown"
}
export declare abstract class Line implements IClonable<Line> {
private _lineType;
protected get lineType(): LineType;
constructor(lineType: LineType);
abstract clone(): Line;
}