satie
Version:
A sheet music renderer for the web
11 lines (10 loc) • 382 B
TypeScript
import { IMeasureLayout } from "./private_measureLayout";
import { ILayoutOptions } from "./private_layoutOptions";
import { ILineBounds } from "./private_lineBounds";
/**
* Centers elements marked as such
*
* @returns new end of line
*/
declare function center(options: ILayoutOptions, bounds: ILineBounds, measures: IMeasureLayout[]): IMeasureLayout[];
export default center;