@stringsync/vexml
Version:
MusicXML to Vexflow
11 lines (10 loc) • 334 B
TypeScript
import { NumberRange } from '../util';
import { DurationRange } from './durationrange';
import { CursorFrame } from './types';
export declare class EmptyCursorFrame implements CursorFrame {
tRange: DurationRange;
xRange: NumberRange;
yRange: NumberRange;
getActiveElements(): any[];
toHumanReadable(): string[];
}