kinetex - v1.0.0-rc.1
    Preparing search index...

    Interface HARLog

    Full HAR log object conforming to the HTTP Archive specification.

    interface HARLog {
        version: string;
        creator: { name: string; version: string; comment?: string };
        entries: HAREntry[];
    }
    Index

    Properties

    version: string

    HAR spec version (e.g. "1.2").

    creator: { name: string; version: string; comment?: string }

    Information about the creator of this HAR log.

    Type Declaration

    • name: string

      Name of the library/tool that created the log.

    • version: string

      Version of the creating library/tool.

    • Optionalcomment?: string

      Optional comment about the creator.

    entries: HAREntry[]

    Ordered list of request/response entries.