Sha256: f12ea658b060da1752c65ae4f1e4c248587f6cd4cb4acabbf79a110b6b02ff75
Contents?: true
Size: 478 Bytes
Versions: 42
Compression:
Stored size: 478 Bytes
Contents
import AsyncReader from '../readers/async'; import type Settings from '../settings'; import type { Entry, Errno } from '../types'; export declare type AsyncCallback = (error: Errno, entries: Entry[]) => void; export default class AsyncProvider { private readonly _root; private readonly _settings; protected readonly _reader: AsyncReader; private readonly _storage; constructor(_root: string, _settings: Settings); read(callback: AsyncCallback): void; }
Version data entries
42 entries across 42 versions & 3 rubygems