vexflow
Version:
A JavaScript library for rendering music notation and guitar tablature.
12 lines (11 loc) • 346 B
TypeScript
import { StaveModifier } from './stavemodifier';
export declare class StaveText extends StaveModifier {
static get CATEGORY(): string;
protected justification: number;
constructor(text: string, position: number, options?: {
shiftX?: number;
shiftY?: number;
justification?: number;
});
draw(): void;
}