opensheetmusicdisplay/opensheetmusicdisplay

View on GitHub
src/MusicalScore/Graphical/ISqueezable.ts

Summary

Maintainability
A
0 mins
Test Coverage
export interface ISqueezable {
    /**
     * Squeezes the wedge by the given amount.
     * @param value Squeeze amount. Positive values squeeze from the left, negative from the right
     */
    squeeze(value: number): void;
}