har2api - v0.1.0
    Preparing search index...

    Interface HarRequest

    The request half of a HAR entry.

    interface HarRequest {
        cookies: HarNameValue[];
        headers: HarNameValue[];
        method: string;
        postData?: HarPostData;
        queryString: HarNameValue[];
        url: string;
    }
    Index

    Properties

    cookies: HarNameValue[]
    headers: HarNameValue[]
    method: string
    postData?: HarPostData
    queryString: HarNameValue[]
    url: string