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

async.d.ts 513B

12345678910111213
  1. import AsyncReader from '../readers/async';
  2. import Settings from '../settings';
  3. import { Entry, Errno } from '../types';
  4. export declare type AsyncCallback = (err: Errno, entries: Entry[]) => void;
  5. export default class AsyncProvider {
  6. private readonly _root;
  7. private readonly _settings;
  8. protected readonly _reader: AsyncReader;
  9. private readonly _storage;
  10. constructor(_root: string, _settings: Settings);
  11. read(callback: AsyncCallback): void;
  12. }
  13. //# sourceMappingURL=async.d.ts.map