Repositorio del curso CCOM4030 el semestre B91 del proyecto Artesanías con el Instituto de Cultura

reader.d.ts 729B

123456789101112131415
  1. /// <reference types="node" />
  2. import * as fs from 'fs';
  3. import * as fsStat from '@nodelib/fs.stat';
  4. import Settings from '../settings';
  5. import { Entry, ErrnoException, Pattern, ReaderOptions } from '../types';
  6. export default abstract class Reader<T> {
  7. protected readonly _settings: Settings;
  8. protected readonly _fsStatSettings: fsStat.Settings;
  9. constructor(_settings: Settings);
  10. abstract dynamic(root: string, options: ReaderOptions): T;
  11. abstract static(patterns: Pattern[], options: ReaderOptions): T;
  12. protected _getFullEntryPath(filepath: string): string;
  13. protected _makeEntry(stats: fs.Stats, pattern: Pattern): Entry;
  14. protected _isFatalError(error: ErrnoException): boolean;
  15. }