ChemPare Documentation - v0.0.0
    Preparing search index...

    Interface RequestHashObject

    Represents a request object with associated hash and file information. This type is used to track and manage requests with their corresponding file data.

    interface RequestHashObject {
        hash: string;
        file: string;
        url: URL;
    }
    Index

    Properties

    Properties

    hash: string

    The unique hash identifier for the request This is generated by the getRequestHash function which takes some unique identifying attributes of the request (method, path, search params and body) and returns an md5sum of them.

    file: string

    The file path associated with the request

    url: URL

    The URL object representing the request endpoint