UNPKG

rxpoweredup

Version:

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

8 lines (7 loc) 530 B
import { IReplyParser } from '../../hub'; import { MessageType } from '../../constants'; import { PortInputSetupSingleHandshakeInboundMessage, RawMessage } from '../../types'; export declare class PortInputFormatSetupSingleHandshakeReplyParser implements IReplyParser<MessageType.portInputFormatSetupSingleHandshake> { readonly messageType = MessageType.portInputFormatSetupSingleHandshake; parseMessage(message: RawMessage<MessageType.portInputFormatSetupSingleHandshake>): PortInputSetupSingleHandshakeInboundMessage; }