版博士V2.0程序
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.
 
 
 
 

22 lines
543 B

  1. import UIEvent from '../UIEvent';
  2. import IWheelEventInit from './IWheelEventInit';
  3. /**
  4. *
  5. */
  6. export default class WheelEvent extends UIEvent {
  7. static DOM_DELTA_PIXEL: number;
  8. static DOM_DELTA_LINE: number;
  9. static DOM_DELTA_PAGE: number;
  10. readonly deltaX: number;
  11. readonly deltaY: number;
  12. readonly deltaZ: number;
  13. readonly deltaMode: number;
  14. /**
  15. * Constructor.
  16. *
  17. * @param type Event type.
  18. * @param [eventInit] Event init.
  19. */
  20. constructor(type: string, eventInit?: IWheelEventInit);
  21. }