UNPKG

next

Version:

The React Framework

8 lines (7 loc) 191 B
import type { TraceEvent } from '../types'; export type Reporter = { flushAll: (opts?: { end: boolean; }) => Promise<void> | void; report: (event: TraceEvent) => void; };