Interface IStreamAggregateData<T>

interface IStreamAggregateData<T> {
    aggregates: IDataAggregate<T>[];
    deviceId: string;
    name: string;
    tags: ITags;
    type: T;
}

Type Parameters

Properties

aggregates: IDataAggregate<T>[]
deviceId: string
name: string
tags: ITags
type: T

Generated using TypeDoc