opensheetmusicdisplay
Version:
An open source JavaScript engine for displaying MusicXML based on VexFlow.
20 lines (19 loc) • 625 B
TypeScript
import { SourceMeasure } from "../SourceMeasure";
export declare class AbstractExpression {
protected placement: PlacementEnum;
parentMeasure: SourceMeasure;
ColorXML: string;
constructor(placement: PlacementEnum);
protected static isStringInStringList(stringList: Array<string>, inputString: string): boolean;
/** Placement of the expression */
get Placement(): PlacementEnum;
static PlacementEnumFromString(placementString: string): PlacementEnum;
}
export declare enum PlacementEnum {
Above = 0,
Below = 1,
Left = 2,
Right = 3,
NotYetDefined = 4,
AboveOrBelow = 5
}