UNPKG

472 BTypeScriptView Raw
1/// <reference types="node" />
2declare type AnonymousMeta = {
3 systemPlatform: NodeJS.Platform;
4 systemRelease: string;
5 systemArchitecture: string;
6 cpuCount: number;
7 cpuModel: string | null;
8 cpuSpeed: number | null;
9 memoryInMb: number;
10 isDocker: boolean;
11 isNowDev: boolean;
12 isWsl: boolean;
13 isCI: boolean;
14 ciName: string | null;
15 nextVersion: string;
16};
17export declare function getAnonymousMeta(): AnonymousMeta;
18export {};