@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.
9 lines (7 loc) • 339 B
text/typescript
import type { FieldConfigurationScheme } from './fieldConfigurationScheme';
/** Project list with assigned field configuration schema. */
export interface FieldConfigurationSchemeProjects {
fieldConfigurationScheme?: FieldConfigurationScheme;
/** The IDs of projects using the field configuration scheme. */
projectIds: string[];
}