/** * @copyright Sister Software * @license AGPL-3.0 * @author Teffen Ellis, et al. * * Re-fetch the HRSA Health Center Service Delivery Sites CSV. Source for the `usgov-hrsa-fqhc` * adapter. US Public Domain. * * Uses Node's built-in fetch (gzip/brotli) and streaming sha256 instead of curl + sha256sum, and * writes the same sibling `MANIFEST.json` (origin URL + fetch timestamp + byte count + sha256) so * downstream adapters can verify provenance. * * Invoke via `mailwoman corpus fetch hrsa --out-root `. */ import type { BaseFetchOptions, FetchSummary } from "./download.ts"; export type FetchHRSAOptions = BaseFetchOptions; export declare function fetchHRSA(options: FetchHRSAOptions, report?: (line: string) => void): Promise; //# sourceMappingURL=hrsa.d.ts.map