UNPKG

rxpoweredup

Version:

A Typescript RxJS-based library for controlling LEGO Powered UP hubs & peripherals.

8 lines (7 loc) 463 B
import { RawMessage } from '../../types'; import { MessageType } from '../../constants'; import { IPortInformationRequestMessageFactory } from '../../features'; export declare class PortInformationRequestOutboundMessageFactory implements IPortInformationRequestMessageFactory { createPortValueRequest(portId: number): RawMessage<MessageType.portInformationRequest>; createPortModeRequest(portId: number): RawMessage<MessageType.portInformationRequest>; }