mirror of
https://github.com/Snigdha-OS/documentation.git
synced 2025-09-10 19:54:57 +02:00
7 lines
294 B
TypeScript
7 lines
294 B
TypeScript
import { Reporter } from './Reporter';
|
|
/**
|
|
* This higher order reporter aggregates too frequent getReport requests to avoid unnecessary computation.
|
|
*/
|
|
declare function createAggregatedReporter<TReporter extends Reporter>(reporter: TReporter): TReporter;
|
|
export { createAggregatedReporter };
|