UNPKG

cypress-xray-plugin

Version:

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

9 lines (8 loc) 287 B
import type { Logger } from "../../../util/logging"; import { Command } from "../../command"; export declare class ConstantCommand<R> extends Command<R, null> { private readonly value; constructor(logger: Logger, value: R); getValue(): R; protected computeResult(): R; }