Represents a Jira Software sprint resource.

Implements PromiseLike<JiraSprint> so it can be awaited directly to fetch the sprint, while also exposing sub-resource methods.

// Await directly to get sprint info
const sprint = await jiraClient.board(42).sprint(10);

// Get sprint issues
const issues = await jiraClient.board(42).sprint(10).issues({ maxResults: 50 });

Implements

Methods

Methods