vexflow
Version:
A JavaScript library for rendering music notation and guitar tablature.
15 lines (14 loc) • 498 B
TypeScript
import { Glyph, GlyphMetrics } from './glyph';
import { TimeSignature } from './timesignature';
export declare class TimeSignatureGlyph extends Glyph {
timeSignature: TimeSignature;
topStartX: number;
botStartX: number;
width: number;
xMin: number;
constructor(timeSignature: TimeSignature, topDigits: string, botDigits: string, code: string, point: number, options?: {
category: string;
});
getMetrics(): GlyphMetrics;
renderToStave(x: number): void;
}