axentax-compiler
Version:
Compile Axentax syntax in JavaScript and generate MIDI output for guitar phrasing.
11 lines (10 loc) • 379 B
TypeScript
import { CompileSymbols } from "../../interface/compile";
import { Conduct } from "../../interface/conduct";
import { SimpleResult } from "../../interface/utils.response.interface";
export declare class UnfoldStepped {
/**
* resolve step
* - style add point
*/
static apply(conduct: Conduct, dualId: number, symbolsList: CompileSymbols[]): SimpleResult;
}