rxpoweredup
Version:
A Typescript RxJS-based library for controlling LEGO Powered UP hubs & peripherals.
8 lines (7 loc) • 482 B
TypeScript
import { IReplyParser } from '../../hub';
import { MessageType } from '../../constants';
import { PortOutputCommandFeedbackInboundMessage, RawMessage } from '../../types';
export declare class PortOutputCommandFeedbackReplyParser implements IReplyParser<MessageType.portOutputCommandFeedback> {
readonly messageType = MessageType.portOutputCommandFeedback;
parseMessage(message: RawMessage<MessageType.portOutputCommandFeedback>): PortOutputCommandFeedbackInboundMessage;
}