vexflow
Version:
A JavaScript library for rendering music notation and guitar tablature.
9 lines (8 loc) • 320 B
TypeScript
import { StaveModifier } from './stavemodifier';
export declare class StaveSection extends StaveModifier {
static get CATEGORY(): string;
protected drawRect: boolean;
constructor(section: string, x?: number, yShift?: number, drawRect?: boolean);
setDrawRect(drawRect: boolean): this;
draw(): void;
}