Software zum Installieren eines Smart-Mirror Frameworks , zum Nutzen von hochschulrelevanten Informationen, auf einem Raspberry-Pi.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

index.d.ts 2.1KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. /**
  2. * Returns a boolean. Will be `true` if the code is running on a CI server,
  3. * otherwise `false`.
  4. *
  5. * Some CI servers not listed here might still trigger the `ci.isCI`
  6. * boolean to be set to `true` if they use certain vendor neutral environment
  7. * variables. In those cases `ci.name` will be `null` and no vendor specific
  8. * boolean will be set to `true`.
  9. */
  10. export const isCI: boolean;
  11. /**
  12. * Returns a boolean if PR detection is supported for the current CI server.
  13. * Will be `true` if a PR is being tested, otherwise `false`. If PR detection is
  14. * not supported for the current CI server, the value will be `null`.
  15. */
  16. export const isPR: boolean | null;
  17. /**
  18. * Returns a string containing name of the CI server the code is running on. If
  19. * CI server is not detected, it returns `null`.
  20. *
  21. * Don't depend on the value of this string not to change for a specific vendor.
  22. * If you find your self writing `ci.name === 'Travis CI'`, you most likely want
  23. * to use `ci.TRAVIS` instead.
  24. */
  25. export const name: string | null;
  26. export const APPVEYOR: boolean;
  27. export const AZURE_PIPELINES: boolean;
  28. export const APPCIRCLE: boolean;
  29. export const BAMBOO: boolean;
  30. export const BITBUCKET: boolean;
  31. export const BITRISE: boolean;
  32. export const BUDDY: boolean;
  33. export const BUILDKITE: boolean;
  34. export const CIRCLE: boolean;
  35. export const CIRRUS: boolean;
  36. export const CODEBUILD: boolean;
  37. export const CODEFRESH: boolean;
  38. export const CODESHIP: boolean;
  39. export const DRONE: boolean;
  40. export const DSARI: boolean;
  41. export const GITHUB_ACTIONS: boolean;
  42. export const GITLAB: boolean;
  43. export const GOCD: boolean;
  44. export const HUDSON: boolean;
  45. export const JENKINS: boolean;
  46. export const LAYERCI: boolean;
  47. export const MAGNUM: boolean;
  48. export const NETLIFY: boolean;
  49. export const NEVERCODE: boolean;
  50. export const RENDER: boolean;
  51. export const SAIL: boolean;
  52. export const SEMAPHORE: boolean;
  53. export const SCREWDRIVER: boolean;
  54. export const SHIPPABLE: boolean;
  55. export const SOLANO: boolean;
  56. export const STRIDER: boolean;
  57. export const TASKCLUSTER: boolean;
  58. export const TEAMCITY: boolean;
  59. export const TRAVIS: boolean;
  60. export const VERCEL: boolean;
  61. export const APPCENTER: boolean;