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 (6 loc) 321 B
import type { RegisteredWebhook } from './registeredWebhook'; /** Container for a list of registered webhooks. Webhook details are returned in the same order as the request. */ export interface ContainerForRegisteredWebhooks { /** A list of registered webhooks. */ webhookRegistrationResult?: RegisteredWebhook[]; }