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.

6 lines (5 loc) 228 B
/** Container for a request to toggle the state of the feature to ENABLED or DISABLED. */ export interface ProjectFeatureToggleRequest { /** The new state for the feature */ state?: 'ENABLED' | 'DISABLED' | 'COMING_SOON'; }