InputSensorBinding import { InputSensorBinding } from "destack:input/binding"; Sensor binding family. export interface InputSensorBinding { listSensors(device: InputDeviceHandle): Result; setSensorStream(device: InputDeviceHandle, kind: SensorKind, stream: &'a readonly SensorStream): Result; readSensor(device: InputDeviceHandle, kind: SensorKind, timeoutNs?: uint64 | undefined): Result; } language/library/src/input/binding/sensor.ds:92:127 Members listSensors(device: InputDeviceHandle): Result List supported sensors for one input device. setSensorStream(device: InputDeviceHandle, kind: SensorKind, stream: &'a readonly SensorStream): Result Set one sensor stream state. readSensor(device: InputDeviceHandle, kind: SensorKind, timeoutNs?: uint64 | undefined): Result Read one sensor sample.