@esm-js/jira.js
Version:
A comprehensive JavaScript/TypeScript library designed for both Node.JS and browsers, facilitating seamless interaction with the Atlassian Jira API.
8 lines (6 loc) • 368 B
text/typescript
import type { WorkflowSchemeAssociations } from './workflowSchemeAssociations';
/** A container for a list of workflow schemes together with the projects they are associated with. */
export interface ContainerOfWorkflowSchemeAssociations {
/** A list of workflow schemes together with projects they are associated with. */
values: WorkflowSchemeAssociations[];
}