1import { PanelPlugin } from '@grafana/data'; 2import { NodeGraphPanel } from './NodeGraphPanel'; 3import { Options } from './types'; 4 5export const plugin = new PanelPlugin<Options>(NodeGraphPanel); 6