@stringsync/vexml
Version:
MusicXML to Vexflow
17 lines (16 loc) • 502 B
TypeScript
import { PartKey, PartRender } from './types';
import { Point } from '../spatial';
import { Config } from '../config';
import { Logger } from '../debug';
import { Document } from './document';
export declare class Part {
private config;
private log;
private document;
private key;
private position;
constructor(config: Config, log: Logger, document: Document, key: PartKey, position: Point);
render(): PartRender;
private renderStaves;
private renderVexflowBrace;
}