guard.ts 249 B

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