Interface IStreamColumn

interface IStreamColumn {
    aggregateType?: "max" | "count" | "avg" | "sum" | "min";
    streamName: string;
    streamType: keyof IStreamTypeMap;
}

Properties

aggregateType?: "max" | "count" | "avg" | "sum" | "min"
streamName: string
streamType: keyof IStreamTypeMap

Generated using TypeDoc