UNPKG

@testmonitor/ts-reporter-client

Version:

A convenient TypeScript wrapper for the TestMonitor reporter API endpoints. It can be used in both TypeScript and JavaScript.

26 lines (25 loc) 518 B
import { ApiRequestConfigurationInterface } from './interfaces/ApiRequestConfigurationInterface'; export declare class ApiRequest { private method; private url; private accessToken; private headers?; private body?; constructor(request: ApiRequestConfigurationInterface); /** * * @returns {} */ getData(): {}; /** * * @param headers * @returns {} */ private getHeaders; /** * * @returns boolean */ private hasFormData; }