@mui/x-telemetry
Version:
MUI X Telemetry.
26 lines • 824 B
text/typescript
export interface TelemetryContextType {
config: {
isInitialized: boolean;
/** Tracks whether we've already attempted runtime projectId resolution (avoids repeated fetch) */
runtimePackageNameHashResolved?: boolean;
};
traits: Record<string, any> & {
machineId?: string | null;
fingerprint?: {
fullHash?: string | null;
coreHash?: string | null;
components?: Record<string, any> | null;
} | null;
repoHash?: string | null;
postinstallPackageNameHash?: string | null;
runtimePackageNameHash?: string | null;
rootPathHash?: string | null;
projectId?: string | null;
anonymousId?: string | null;
sessionId?: string | null;
isDocker?: boolean;
isCI?: boolean;
};
}
declare const defaultValue: TelemetryContextType;
export default defaultValue;