UNPKG

@stringsync/vexml

Version:

MusicXML to Vexflow

14 lines (13 loc) 437 B
import * as data from '../../data'; import * as util from '../../util'; import { DynamicType } from './enums'; import { Config } from '../../config'; import { Logger } from '../../debug'; export declare class Dynamics { private config; private log; private measureBeat; private dynamicType; constructor(config: Config, log: Logger, measureBeat: util.Fraction, dynamicType: DynamicType); parse(): data.Dynamics; }