satie
Version:
A sheet music renderer for the web
12 lines (11 loc) • 338 B
TypeScript
import { IModel, IMeasure } from "./document";
export declare type StaffToVoicesType = {
[staff: number]: {
[voice: number]: IModel[];
};
[staff: string]: {
[voice: number]: IModel[];
};
};
export default voiceStaffStemDirection;
declare function voiceStaffStemDirection(measures: IMeasure[]): IMeasure[];