opennms
Version:
Client API for the OpenNMS network monitoring platform
21 lines (15 loc) • 325 B
text/typescript
import {Moment} from 'moment';
/**
* A collection of flow time-series data.
* @module OnmsFlowTable
*/
export class OnmsFlowTable {
/** start time */
public start: Moment;
/** end time */
public end: Moment;
/** headers */
public headers: string[];
/** rows */
public rows: any[][];
}