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 854B

12345678910111213141516171819
  1. // Type definitions for graceful-fs 4.1
  2. // Project: https://github.com/isaacs/node-graceful-fs
  3. // Definitions by: Bart van der Schoor <https://github.com/Bartvds>
  4. // BendingBender <https://github.com/BendingBender>
  5. // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
  6. // Minimum TypeScript Version: 3.9
  7. /// <reference types="node" />
  8. export * from 'fs';
  9. /**
  10. * Use this method to patch the global fs module (or any other fs-like module).
  11. * NOTE: This should only ever be done at the top-level application layer, in order to delay on
  12. * EMFILE errors from any fs-using dependencies. You should **not** do this in a library, because
  13. * it can cause unexpected delays in other parts of the program.
  14. * @param fsModule The reference to the fs module or an fs-like module.
  15. */
  16. export function gracefulify<T>(fsModule: T): T;