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