UNPKG

better-cue-parser

Version:

A simple but better js library to parse cue sheet

10 lines (9 loc) 225 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;