LCOV parser
    Preparing search index...

    Interface Options

    interface Options {
        fieldNames?: FieldNames;
        from: string | ArrayBufferLike | Buffer<ArrayBufferLike>;
        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 | ArrayBufferLike | Buffer<ArrayBufferLike>

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

    parser?: LcovParser

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