Type Alias CreateAppSignedRequestProps

CreateAppSignedRequestProps: {
    body?: string;
    headers?: Record<string, string>;
    method:
        | "GET"
        | "PUT"
        | "POST"
        | "DELETE"
        | "PATCH"
        | "HEAD";
    path: string;
}

Type declaration

  • Optionalbody?: string

    optional stringified body of the request

  • Optionalheaders?: Record<string, string>

    optional headers of the request

  • method:
        | "GET"
        | "PUT"
        | "POST"
        | "DELETE"
        | "PATCH"
        | "HEAD"

    the request method

  • path: string

    the path of the request method