ts-lambda-api - v2.5.2
    Preparing search index...

    Type Alias URIInternal

    Represents the components parts of a Uniform Resource Identifier used to construct the target location of a Request.

    type URI = {
        fragment?: string;
        hostname: string;
        password?: string;
        path: string;
        port?: number;
        protocol: string;
        query?: QueryParameterBag;
        username?: string;
    }

    Hierarchy (View Summary)

    Implemented by

    Index

    Properties

    fragment?: string
    hostname: string
    password?: string
    path: string
    port?: number
    protocol: string
    username?: string