UNPKG

cypress-xray-plugin

Version:

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

12 lines (11 loc) 569 B
import type { JiraClient } from "../../../../client/jira/jira-client"; import type { StringMap } from "../../../../types/util"; import type { Logger } from "../../../../util/logging"; import type { Computable } from "../../../command"; import { GetFieldValuesCommand } from "./get-field-values-command"; export declare class GetSummaryValuesCommand extends GetFieldValuesCommand<string> { constructor(parameters: { jiraClient: JiraClient; }, logger: Logger, issueKeys: Computable<string[]>); protected computeResult(): Promise<StringMap<string>>; }