UNPKG

@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.

12 lines (11 loc) 379 B
/** Details of the contextual configuration for a custom field. */ export interface ContextualConfiguration { /** The ID of the configuration. */ id: string; /** The ID of the field context the configuration is associated with. */ fieldContextId: string; /** The field configuration. */ configuration?: unknown; /** The field value schema. */ schema?: unknown; }