UNPKG

dt-app

Version:

The Dynatrace App Toolkit is a tool you can use from your command line to create, develop, and deploy apps on your Dynatrace environment.

8 lines (7 loc) 510 B
import type { FastifyRequest } from 'fastify'; import type { IncomingHttpHeaders } from 'undici/types/header'; import { type Response } from '../utils/request'; /** Sends request to platform with all needed headers and token */ export declare function sendRequestToPlatform(request: FastifyRequest, authHeader: string): Promise<Response>; /** List of HTTP headers that should be excluded from forwarded requests */ export declare function getFilteredHeaders(headers: IncomingHttpHeaders): IncomingHttpHeaders;