Interface IStreamCurrentValue<T>

interface IStreamCurrentValue<T> {
    currentValue: IStreamTypeMap[T];
    currentValueTime: string;
    deviceId: string;
    streamName: string;
    streamType: keyof IStreamTypeMap;
    tags: ITags;
}

Type Parameters

Properties

currentValue: IStreamTypeMap[T]
currentValueTime: string
deviceId: string
streamName: string
streamType: keyof IStreamTypeMap
tags: ITags

Generated using TypeDoc