rxpoweredup
Version:
A Typescript RxJS-based library for controlling LEGO Powered UP hubs & peripherals.
7 lines (6 loc) • 371 B
TypeScript
import { InjectionToken } from 'tsyringe';
import { HubProperty } from '../../constants';
export interface IHubPropertiesFeatureErrorsFactory {
createInvalidPropertyValueError(property: HubProperty, value: number[] | number | string | string[]): Error;
}
export declare const HUB_PROPERTIES_FEATURE_ERRORS_FACTORY: InjectionToken<IHubPropertiesFeatureErrorsFactory>;