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.

sync.d.ts 477B

123456789101112131415
  1. import * as fsScandir from '@nodelib/fs.scandir';
  2. import type { Entry } from '../types';
  3. import Reader from './reader';
  4. export default class SyncReader extends Reader {
  5. protected readonly _scandir: typeof fsScandir.scandirSync;
  6. private readonly _storage;
  7. private readonly _queue;
  8. read(): Entry[];
  9. private _pushToQueue;
  10. private _handleQueue;
  11. private _handleDirectory;
  12. private _handleError;
  13. private _handleEntry;
  14. private _pushToStorage;
  15. }