UNPKG

@planbgmbh/flinkey-web-components

Version:

This project provides some Web Components built for usage in combination with the flinkey API.

10 lines (9 loc) 318 B
import { HttpResponse } from './utils'; /** * Sends an HTTP request via fetch API. * @param {Request} request - The HTTP request to send via fetch API. * @returns {Promise<HttpResponse<T>>} The HTTP response. * @template T */ declare function http<T>(request: Request): Promise<HttpResponse<T>>; export { http };