@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.
13 lines (12 loc) • 486 B
text/typescript
export interface GetApplicationProperty {
/** The key of the application property. */
key?: string;
/** The permission level of all items being returned in the list. */
permissionLevel?: string;
/**
* When a `key` isn't provided, this filters the list of results by the application property `key` using a regular
* expression. For example, using `jira.lf.*` will return all application properties with keys that start with
* _jira.lf._.
*/
keyFilter?: string;
}