import { TachoMotor } from "./tachomotor"; import { IDeviceInterface } from "../interfaces"; import * as Consts from "../consts"; /** * @class MediumLinearMotor * @extends TachoMotor */ export class MediumLinearMotor extends TachoMotor { constructor (hub: IDeviceInterface, portId: number) { super(hub, portId, {}, Consts.DeviceType.MEDIUM_LINEAR_MOTOR); } }