UNPKG

cue-parser

Version:

A simple js library to parse cue sheet

10 lines (9 loc) 216 B
export interface ICommand { command: string; params: string[]; } /** * parse one line of cue sheet, and return COMMAND * and all parameters */ export declare function parseCommand(line: string): ICommand;