axentax-compiler
Version:
Compile Axentax syntax in JavaScript and generate MIDI output for guitar phrasing.
7 lines (6 loc) • 302 B
TypeScript
import { SimpleResult } from "../interface/utils.response.interface";
import { CompileSymbols } from "../interface/compile";
import { Conduct } from "../interface/conduct";
export declare class BlockCompiler {
static compile(conduct: Conduct, symbolsDualLists: CompileSymbols[][]): SimpleResult;
}