LCOV parser
    Preparing search index...

    Interface Options

    interface Options {
        fieldNames?: FieldNames;
        from: string | ArrayBuffer | Buffer<ArrayBufferLike> | Readable;
        parser?: LcovParser;
    }

    Hierarchy

    • SharedOptions
      • Options
    Index

    Properties

    fieldNames?: FieldNames

    The field names to use for parsing. These will only be used if the parser field is not defined.

    from: string | ArrayBuffer | Buffer<ArrayBufferLike> | Readable

    Input source to read from. This can be a string, Readable, Buffer, or ArrayBuffer.

    parser?: LcovParser

    A parser instance that should be used for parsing instead of creating a new one internally.