import { MonitorObjects } from '../../commands/monitor.constants'; /** * The returned data emitted from {@link monitor} * @category Interfaces */ export interface MonitorEmittedData { /** The event timestamp in the format `--
T.`. */ timestamp: string; /** The namespace which the event originated from. */ nsid: string; /** The object that caused the update. */ object: MonitorObjects; /** The lines that `ip monitor` gave to `stdout` when an update came, parsed in interesting lines. */ lines: string[]; /** The original line emitted by the command. */ originalLine: string; }