arrakis-js
Version: 
Arrakis Javascript client library
15 lines (14 loc) • 404 B
TypeScript
export declare class Channel {
    name: string;
    dataType: string;
    sampleRate: number;
    time: string;
    publisher: string;
    partitionID: number;
    constructor(name: string, dataType: string, sampleRate: number, time: string, publisher: string, partitionID: number);
    static fromJson(json: any): Channel;
}
export type ChannelMessage = {
    done?: boolean;
    channel?: Channel;
};