@stringsync/vexml
Version:
MusicXML to Vexflow
16 lines (15 loc) • 422 B
TypeScript
import * as data from '../../data';
import * as musicxml from '../../musicxml';
import { Config } from '../../config';
import { Logger } from '../../debug';
export declare class Bend {
private config;
private log;
private bendType;
private semitones;
private constructor();
static create(config: Config, log: Logger, musicXML: {
bend: musicxml.Bend;
}): Bend;
parse(): data.Bend;
}