anonymous-meta.d.ts 472 B

123456789101112131415161718
  1. /// <reference types="node" />
  2. declare 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. };
  17. export declare function getAnonymousMeta(): AnonymousMeta;
  18. export {};