/** * Jest reporter — only generates API docs when the full run completes. * During the run we only record hits (superagent hook + flush); no mid-run rebuilds. */ declare class DaxtaJestReporter { /** Stamp the run before workers start so this run's docs only reflect this run's traffic. */ onRunStart(): void; onRunComplete(): void; } export = DaxtaJestReporter;