UNPKG

@embrace-io/react-native-navigation

Version:

A React Native wrapper for the OTel Navigation instrumentation library that creates telemetry data representing Navigation changes

6 lines (5 loc) 206 B
import { MutableRefObject } from "react"; import { Span } from "@opentelemetry/api"; export type SpanRef = MutableRefObject<Span | null>; declare const useSpanRef: () => SpanRef; export default useSpanRef;