UNPKG

@dudousxd/nestjs-telescope

Version:

Laravel Telescope-style observability console for NestJS — core: watchers, recorder, correlation, SQLite store, headless API.

10 lines 331 B
import type { BatchOrigin } from '../entry/entry.js'; export interface Batch { id: string; origin: BatchOrigin; startedAt: Date; traceId?: string; spanId?: string; } export declare function createBatch(origin: BatchOrigin, idFactory: () => string, now?: () => number): Batch; //# sourceMappingURL=batch.d.ts.map