const ACTIVE_EVENTS: Event['type'][] = [
  'change',
  'keydown',
  'mousedown',
  'mousemove',
  'mouseup',
  'orientationchange',
  'resize',
  'scroll',
  'touchend',
  'touchmove',
  'touchstart',
  'visibilitychange',
];

export default ACTIVE_EVENTS;
