UNPKG

cypress-xray-plugin

Version:

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

10 lines (9 loc) 307 B
export type DateTimeIso = string; /** * Type describing mappings of string keys to arbitrary values. */ export type StringMap<T> = Record<string, T>; /** * Represents a value that may be wrapped in a callback. */ export type MaybeFunction<P extends unknown[], T> = ((...args: P) => Promise<T> | T) | T;