@nodecfdi/sat-ws-descarga-masiva
    Preparing search index...

    Expected behavior of a PackageReader contract

    type PackageReaderInterface = {
        count(): Promise<number>;
        fileContents(): AsyncGenerator<Map<string, string>>;
        getFilename(): string;
    }

    Implemented by

    Index

    Methods

    • Traverse each file inside the package, with the filename as key and file content as value

      Returns AsyncGenerator<Map<string, string>>