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.

8 lines (7 loc) 244 B
/** The payload for setting a board feature */ export interface BoardFeaturePayload { /** The key of the feature */ featureKey?: 'ESTIMATION' | 'SPRINT' | string; /** Whether the feature should be turned on or off */ state?: boolean; }