AppRootProps interface

Signature

  1. export interface AppRootProps<T = KeyValue>

Import

  1. import { AppRootProps } from '@grafana/data';

Properties

PropertyTypeDescription
basenamestringbase URL segment for an app, /app/pluginId
metaAppPluginMeta<T>
onNavChanged(nav: NavModel) => voidPass the nav model to the container… is there a better way?
pathstringThe URL path to this page
queryKeyValueThe URL query parameters

basename property

base URL segment for an app, /app/pluginId

Signature

  1. basename: string;

meta property

Signature

  1. meta: AppPluginMeta<T>;

onNavChanged property

Pass the nav model to the container… is there a better way?

Signature

  1. onNavChanged: (nav: NavModel) => void;

path property

The URL path to this page

Signature

  1. path: string;

query property

The URL query parameters

Signature

  1. query: KeyValue;