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.

constants.d.ts 492B

12345678910111213
  1. /** @deprecated since v6.3.0 - use constants property exposed by the relevant module instead. */
  2. declare module 'constants' {
  3. import { constants as osConstants, SignalConstants } from 'os';
  4. import { constants as cryptoConstants } from 'crypto';
  5. import { constants as fsConstants } from 'fs';
  6. const exp: typeof osConstants.errno &
  7. typeof osConstants.priority &
  8. SignalConstants &
  9. typeof cryptoConstants &
  10. typeof fsConstants;
  11. export = exp;
  12. }