UNPKG

@dash0/sdk-web

Version:

Dash0's Web SDK to collect telemetry from end-users' web browsers

5 lines (4 loc) 142 B
export type Batcher<T> = { send(item: T): void; }; export declare function newBatcher<T>(sendInternal: (items: T[]) => void): Batcher<T>;