mirror of
https://github.com/grafana/grafana.git
synced 2025-07-31 16:02:46 +08:00
Docs: updated packages reference docs for 7.1.0-beta1. (#25958)
This commit is contained in:
28
docs/sources/packages_api/data/tracespanreference.md
Normal file
28
docs/sources/packages_api/data/tracespanreference.md
Normal file
@ -0,0 +1,28 @@
|
||||
+++
|
||||
# -----------------------------------------------------------------------
|
||||
# Do not edit this file. It is automatically generated by API Documenter.
|
||||
# -----------------------------------------------------------------------
|
||||
title = "TraceSpanReference"
|
||||
keywords = ["grafana","documentation","sdk","@grafana/data"]
|
||||
type = "docs"
|
||||
+++
|
||||
|
||||
## TraceSpanReference type
|
||||
|
||||
### TraceSpanReference type
|
||||
|
||||
<b>Signature</b>
|
||||
|
||||
```typescript
|
||||
export declare type TraceSpanReference = {
|
||||
refType: 'CHILD_OF' | 'FOLLOWS_FROM';
|
||||
span?: TraceSpan | null | undefined;
|
||||
spanID: string;
|
||||
traceID: string;
|
||||
};
|
||||
```
|
||||
<b>Import</b>
|
||||
|
||||
```typescript
|
||||
import { TraceSpanReference } from '@grafana/data';
|
||||
```
|
Reference in New Issue
Block a user