@directus/api
Version:
Directus is a real-time API and App dashboard for managing SQL database content
11 lines (10 loc) • 377 B
TypeScript
import type { TelemetryReport } from '../types/report.js';
import type { OwnerInformation } from '@directus/types';
export type OwnerReport = OwnerInformation & {
project_id: string;
version: string;
};
/**
* Post an anonymous usage report to the centralized intake server
*/
export declare const sendReport: (report: TelemetryReport | OwnerReport) => Promise<void>;