Files
old-kitabcitab-frontend/kitabcitab/node_modules/next/dist/telemetry/anonymous-meta.d.ts
2022-12-27 12:05:56 +01:00

19 lines
472 B
TypeScript

/// <reference types="node" />
declare 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 {};