mirror of https://github.com/grafana/grafana.git
6 lines
196 B
TypeScript
6 lines
196 B
TypeScript
|
import { PanelPlugin } from '@grafana/data';
|
||
|
import { NodeGraphPanel } from './NodeGraphPanel';
|
||
|
import { Options } from './types';
|
||
|
|
||
|
export const plugin = new PanelPlugin<Options>(NodeGraphPanel);
|