UNPKG

@dynatrace/runtime-simulator

Version:

The Dynatrace JavaScript runtime simulator.

5 lines (4 loc) 314 B
import type { RequestInfo, RequestInit, Response } from 'undici'; import type { ContextConfiguration } from '../context'; /** The Fetch API provides an interface for fetching resources */ export default function (config?: ContextConfiguration): (requestInfo: RequestInfo, init?: RequestInit) => Promise<Response>;