You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
290 B

1 month ago
  1. declare module "normalize-wheel-es" {
  2. interface NormalizedWheelEvent {
  3. spinX: number;
  4. spinY: number;
  5. pixelX: number;
  6. pixelY: number;
  7. }
  8. function normalizeWheel(e: WheelEvent): NormalizedWheelEvent;
  9. export default normalizeWheel;
  10. export { NormalizedWheelEvent };
  11. }