123456789101112131415
  1. import { PointerEvents, PointerEventsConfig } from './pointer-events';
  2. import { EventListenerOptions, Platform } from '../platform/platform';
  3. /**
  4. * @hidden
  5. */
  6. export declare class UIEventManager {
  7. plt: Platform;
  8. private evts;
  9. constructor(plt: Platform);
  10. pointerEvents(config: PointerEventsConfig): PointerEvents;
  11. listen(ele: any, eventName: string, callback: any, opts: EventListenerOptions): Function;
  12. unlistenAll(): void;
  13. destroy(): void;
  14. }