cypress-xray-plugin
Version:
A Cypress plugin for uploading test results to Xray (test management for Jira)
11 lines (10 loc) • 406 B
TypeScript
import type { JiraClient } from "../../../../client/jira/jira-client";
import type { FieldDetail } from "../../../../types/jira/responses/field-detail";
import { Command } from "../../../command";
interface Parameters {
jiraClient: JiraClient;
}
export declare class FetchAllFieldsCommand extends Command<FieldDetail[], Parameters> {
protected computeResult(): Promise<FieldDetail[]>;
}
export {};