import type { IDevice } from "../device.interface"
/**
 * Interface representing the Climbro device, extending the base Device interface.
 */
// eslint-disable-next-line @typescript-eslint/no-empty-object-type
export interface IClimbro extends IDevice {}
