satie
Version:
A sheet music renderer for the web
9 lines (8 loc) • 339 B
TypeScript
import { IFactory } from "./private_factory";
import { ISegment, Document } from "./document";
/**
* Given a set of segments, scales divisions so that they are compatible.
*
* Returns the division count.
*/
export declare function normalizeDivisionsInPlace(factory: IFactory | Document, segments: ISegment[], factor?: number): number;