Amazon Vinyl
    Preparing search index...

    Variable passiveEventHandlersConst

    passiveEventHandlers: {
        ontouchmove: HookExtension<
            ((this: GlobalEventHandlers, ev: TouchEvent) => any)
            | null
            | undefined,
        >;
        ontouchstart: HookExtension<
            ((this: GlobalEventHandlers, ev: TouchEvent) => any)
            | null
            | undefined,
        >;
        onwheel: HookExtension<
            ((this: GlobalEventHandlers, ev: WheelEvent) => any)
            | null,
        >;
    } = ...

    Type Declaration

    • Readonlyontouchmove: HookExtension<
          ((this: GlobalEventHandlers, ev: TouchEvent) => any)
          | null
          | undefined,
      >
    • Readonlyontouchstart: HookExtension<
          ((this: GlobalEventHandlers, ev: TouchEvent) => any)
          | null
          | undefined,
      >
    • Readonlyonwheel: HookExtension<((this: GlobalEventHandlers, ev: WheelEvent) => any) | null>