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
12 lines
992 B
Plaintext
12 lines
992 B
Plaintext
export { useSensor } from './useSensor';
|
|
export { useSensors } from './useSensors';
|
|
export { AbstractPointerSensor, PointerSensor } from './pointer';
|
|
export type { AbstractPointerSensorOptions, AbstractPointerSensorProps, PointerActivationConstraint, PointerEventHandlers, PointerSensorOptions, PointerSensorProps, } from './pointer';
|
|
export { MouseSensor } from './mouse';
|
|
export type { MouseSensorOptions, MouseSensorProps } from './mouse';
|
|
export { TouchSensor } from './touch';
|
|
export type { TouchSensorOptions, TouchSensorProps } from './touch';
|
|
export { KeyboardSensor, KeyboardCode, defaultKeyboardCoordinateGetter, } from './keyboard';
|
|
export type { KeyboardCoordinateGetter, KeyboardSensorOptions, KeyboardSensorProps, KeyboardCodes, } from './keyboard';
|
|
export type { Activator, Activators, Response as SensorResponse, Sensor, Sensors, SensorActivatorFunction, SensorDescriptor, SensorContext, SensorHandler, SensorInstance, SensorOptions, SensorProps, } from './types';
|