@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.
10 lines (9 loc) • 337 B
text/typescript
export interface DeleteProjectProperty {
/** The project ID or project key (case sensitive). */
projectIdOrKey: string | number;
/**
* The project property key. Use [Get project property keys](#api-rest-api-2-project-projectIdOrKey-properties-get) to
* get a list of all project property keys.
*/
propertyKey: string;
}