UNPKG

cypress-xray-plugin

Version:

A Cypress plugin for uploading test results to Xray (test management for Jira)

20 lines (19 loc) 444 B
import type { ChangeHistory } from "./change-history"; export interface Changelog { /** * The list of changelogs. */ histories?: ChangeHistory[]; /** * The maximum number of results that could be on the page. */ maxResults?: number; /** * The index of the first item returned on the page. */ startAt?: number; /** * The number of results on the page. */ total?: number; }