grafana/public/app/features/library-panels/guard.ts

7 lines
248 B
TypeScript

import { PanelModel } from '../dashboard/state';
import { PanelModelWithLibraryPanel } from './types';
export function isPanelModelLibraryPanel(panel: PanelModel): panel is PanelModelWithLibraryPanel {
return Boolean(panel.libraryPanel?.uid);
}