mirror of
https://github.com/grafana/grafana.git
synced 2025-02-20 11:48:34 -06:00
7 lines
301 B
TypeScript
7 lines
301 B
TypeScript
|
import { PanelPlugin } from '@grafana/data';
|
||
|
import { NewsPanel } from './NewsPanel';
|
||
|
import { NewsPanelEditor } from './NewsPanelEditor';
|
||
|
import { defaults, NewsOptions } from './types';
|
||
|
|
||
|
export const plugin = new PanelPlugin<NewsOptions>(NewsPanel).setDefaults(defaults).setEditor(NewsPanelEditor);
|