UNPKG

@altostra/core

Version:

Core library for shared types and logic

5 lines (4 loc) 177 B
import type { TelemetryEvent } from "./TelemetryEvent"; export interface ITelemetryReporter<T extends string> { reportTelemetry(data: TelemetryEvent<T>[]): Promise<void>; }