Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
15 lines
651 B
Plaintext
15 lines
651 B
Plaintext
import type { TouchEvent } from 'react';
|
|
import { AbstractPointerSensor, PointerSensorProps, PointerSensorOptions } from '../pointer';
|
|
import type { SensorProps } from '../types';
|
|
export interface TouchSensorOptions extends PointerSensorOptions {
|
|
}
|
|
export declare type TouchSensorProps = SensorProps<TouchSensorOptions>;
|
|
export declare class TouchSensor extends AbstractPointerSensor {
|
|
constructor(props: PointerSensorProps);
|
|
static activators: {
|
|
eventName: "onTouchStart";
|
|
handler: ({ nativeEvent: event }: TouchEvent, { onActivation }: TouchSensorOptions) => boolean;
|
|
}[];
|
|
static setup(): () => void;
|
|
}
|