rxpoweredup
Version:
A Typescript RxJS-based library for controlling LEGO Powered UP hubs & peripherals.
7 lines (6 loc) • 483 B
TypeScript
import { MessageType, PortModeInformationType } from '../../constants';
import { RawMessage } from '../../types';
import { IPortModeInformationRequestMessageFactory } from '../../features';
export declare class PortModeInformationRequestOutboundMessageFactory implements IPortModeInformationRequestMessageFactory {
createPortModeInformationRequest(portId: number, mode: number, modeInformationType: PortModeInformationType): RawMessage<MessageType.portModeInformationRequest>;
}