Files
lcbp3.np-dms.work/frontend/node_modules/next/dist/telemetry/anonymous-meta.d.ts
2025-09-21 20:29:15 +07:00

18 lines
433 B
TypeScript
Executable File

type AnonymousMeta = {
systemPlatform: NodeJS.Platform;
systemRelease: string;
systemArchitecture: string;
cpuCount: number;
cpuModel: string | null;
cpuSpeed: number | null;
memoryInMb: number;
isDocker: boolean;
isNowDev: boolean;
isWsl: boolean;
isCI: boolean;
ciName: string | null;
nextVersion: string;
};
export declare function getAnonymousMeta(): AnonymousMeta;
export {};