helia
    Preparing search index...

    Interface UnixFSExporterOptions

    interface UnixFSExporterOptions {
        length?: number;
        listingOnly?: boolean;
        offset?: number;
    }
    Index

    Properties

    length?: number

    Only include blocks that would include this many file bytes (exclusive, inclusive of offset).

    If the CID being exported is a directory, this option is ignored.

    Infinity
    
    listingOnly?: boolean

    By default an exported CAR file will include all blocks that make up a directory, and the files that are stored there.

    To only include blocks that allow the initial enumeration of the directory, pass true here

    false
    
    offset?: number

    Include blocks that start with this offset.

    If the CID being exported is a directory, this option is ignored.

    0