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.

13 lines (12 loc) 229 B
/** * * @export * @interface Configuration */ export interface Configuration { domain: string; accessToken: string; createReportPath: string; submitTestResultsPath: string; uploadAttachmentPath: string; }