mirror of
https://github.com/grafana/grafana.git
synced 2025-07-30 21:22:44 +08:00

* added packages reference menu item. * removed the draft flag. * Updated docs by running script.
64 lines
1.3 KiB
Markdown
64 lines
1.3 KiB
Markdown
+++
|
|
# -----------------------------------------------------------------------
|
|
# Do not edit this file. It is automatically generated by API Documenter.
|
|
# -----------------------------------------------------------------------
|
|
title = "AppRootProps"
|
|
keywords = ["grafana","documentation","sdk","@grafana/data"]
|
|
type = "docs"
|
|
+++
|
|
|
|
## AppRootProps interface
|
|
|
|
<b>Signature</b>
|
|
|
|
```typescript
|
|
export interface AppRootProps<T = KeyValue>
|
|
```
|
|
<b>Import</b>
|
|
|
|
```typescript
|
|
import { AppRootProps } from '@grafana/data';
|
|
```
|
|
<b>Properties</b>
|
|
|
|
| Property | Type | Description |
|
|
| --- | --- | --- |
|
|
| [meta](#meta-property) | <code>AppPluginMeta<T></code> | |
|
|
| [onNavChanged](#onnavchanged-property) | <code>(nav: NavModel) => void</code> | Pass the nav model to the container... is there a better way? |
|
|
| [path](#path-property) | <code>string</code> | |
|
|
| [query](#query-property) | <code>KeyValue</code> | |
|
|
|
|
### meta property
|
|
|
|
<b>Signature</b>
|
|
|
|
```typescript
|
|
meta: AppPluginMeta<T>;
|
|
```
|
|
|
|
### onNavChanged property
|
|
|
|
Pass the nav model to the container... is there a better way?
|
|
|
|
<b>Signature</b>
|
|
|
|
```typescript
|
|
onNavChanged: (nav: NavModel) => void;
|
|
```
|
|
|
|
### path property
|
|
|
|
<b>Signature</b>
|
|
|
|
```typescript
|
|
path: string;
|
|
```
|
|
|
|
### query property
|
|
|
|
<b>Signature</b>
|
|
|
|
```typescript
|
|
query: KeyValue;
|
|
```
|