pixi.js
Version:
<p align="center"> <a href="https://pixijs.com" target="_blank" rel="noopener noreferrer"> <img height="150" src="https://files.pixijs.download/branding/pixijs-logo-transparent-dark.svg?v=1" alt="PixiJS logo"> </a> </p> <br/> <p align="center">
42 lines (39 loc) • 814 B
JavaScript
import { FederatedMouseEvent } from './FederatedMouseEvent.mjs';
;
class FederatedWheelEvent extends FederatedMouseEvent {
constructor() {
super(...arguments);
/**
* Units specified in pixels.
* @ignore
*/
this.DOM_DELTA_PIXEL = 0;
/**
* Units specified in lines.
* @ignore
*/
this.DOM_DELTA_LINE = 1;
/**
* Units specified in pages.
* @ignore
*/
this.DOM_DELTA_PAGE = 2;
}
}
/**
* Units specified in pixels.
* @ignore
*/
FederatedWheelEvent.DOM_DELTA_PIXEL = 0;
/**
* Units specified in lines.
* @ignore
*/
FederatedWheelEvent.DOM_DELTA_LINE = 1;
/**
* Units specified in pages.
* @ignore
*/
FederatedWheelEvent.DOM_DELTA_PAGE = 2;
export { FederatedWheelEvent };
//# sourceMappingURL=FederatedWheelEvent.mjs.map