-
Notifications
You must be signed in to change notification settings - Fork 285
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9e4a5e7
commit 95fc185
Showing
4 changed files
with
3 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,7 @@ | ||
import { spanPlaygroundPageLoaderQuery$data } from "./__generated__/spanPlaygroundPageLoaderQuery.graphql"; | ||
|
||
export interface PlaygroundInstanceProps { | ||
/** | ||
* Multiple playground instances are supported. | ||
* The id is used to identify the instance. | ||
*/ | ||
playgroundInstanceId: number; | ||
} | ||
|
||
/** | ||
* The type of a span that is fetched to pre-populate the playground. | ||
* This span gets fetched when navigating from a span to the playground, used for span replay. | ||
*/ | ||
export type PlaygroundSpan = Extract< | ||
spanPlaygroundPageLoaderQuery$data["span"], | ||
{ __typename: "Span" } | ||
>; |