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

Type declaration

  • Optional body?: string

    optional stringified body of the request

  • Optional headers?: 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