UNPKG

@atlaskit/util-service-support

Version:

A library of support classes for integrating React components with REST HTTP services

6 lines (5 loc) 250 B
import { type RequestServiceOptions, type ServiceConfig } from './types'; /** * @returns Promise containing the json response */ export declare const requestService: <T>(serviceConfig: ServiceConfig, options?: RequestServiceOptions) => Promise<T>;