securityos/node_modules/next/dist/telemetry/anonymous-meta.d.ts

19 lines
464 B
TypeScript
Raw Normal View History

2024-09-06 15:32:35 +00:00
/// <reference types="node" />
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 {};