D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
usr
/
share
/
grafana
/
public
/
app
/
features
/
library-panels
/
Filename :
guard.ts
back
Copy
import { PanelModel } from '../dashboard/state'; import { PanelModelWithLibraryPanel } from './types'; export function isPanelModelLibraryPanel(panel: PanelModel): panel is PanelModelWithLibraryPanel { return Boolean(panel.libraryPanel?.uid); }