rxpoweredup
Version:
A Typescript RxJS-based library for controlling LEGO Powered UP hubs & peripherals.
9 lines (8 loc) • 544 B
TypeScript
import { MessageType } from '../../constants';
import { RawMessage } from '../../types';
import { IPortInputFormatSetupMessageFactory } from '../../features';
export declare class PortInputFormatSetupSingleOutboundMessageFactory implements IPortInputFormatSetupMessageFactory {
private readonly defaultUnsubscribePortPollingInterval;
private readonly minAllowedDeltaThreshold;
createMessage(portId: number, mode: number, notificationsEnabled: boolean, deltaThreshold?: number): RawMessage<MessageType.portInputFormatSetupSingle>;
}