satie
Version:
A sheet music renderer for the web
19 lines (18 loc) • 510 B
TypeScript
/// <reference types="react" />
import { Component, ReactElement } from "react";
import BarlineModel from "./implBarline_barlineModel";
/**
* Renders a full-stave-height barline at (x,y).
* Does not do any interesting calculations.
*/
export default class BarlineView extends Component<{
layout: BarlineModel.IBarlineLayout;
}, {}> {
static contextTypes: any;
context: {
originY: number;
systemBottom: number;
systemTop: number;
};
render(): ReactElement<any>;
}