UNPKG

openlyrics-parser

Version:

Parses and extracts data from OpenLyrics files, and creates them!

7 lines (6 loc) 318 B
import { IBuilderOptions } from './builder.model'; import { IParserRoot } from './parser.model'; export * from './parser.model'; export declare const OpenLyricsParser: (fileContent: string) => IParserRoot; export * from './builder.model'; export declare const OpenLyricsBuilder: (songData: IBuilderOptions) => string;