/**
* The `<snap-pizzicato>` element represents the snap pizzicato symbol.
*
* See https://www.w3.org/2021/06/musicxml40/musicxml-reference/elements/snap-pizzicato/
*/
export class SnapPizzicato {
element;
constructor(element) {
this.element = element;
}
}