Skip to content

Commit 5b12920

Browse files
authored
expose the sprint module (#78)
* expose the sprint module * revert prettier formatting
1 parent 3b1891b commit 5b12920

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/index.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,7 @@ import {
7070
ProjectTypes,
7171
ProjectVersions,
7272
Screens,
73+
Sprint,
7374
Tasks,
7475
TimeTracking,
7576
UserProperties,
@@ -160,6 +161,7 @@ export class Client {
160161
public projectTypes: ProjectTypes;
161162
public projectVersions: ProjectVersions;
162163
public screens: Screens;
164+
public sprint: Sprint;
163165
public tasks: Tasks;
164166
public timeTracking: TimeTracking;
165167
public userProperties: UserProperties;
@@ -256,6 +258,7 @@ export class Client {
256258
this.projectTypes = new ProjectTypes(this);
257259
this.projectVersions = new ProjectVersions(this);
258260
this.screens = new Screens(this);
261+
this.sprint = new Sprint(this);
259262
this.tasks = new Tasks(this);
260263
this.timeTracking = new TimeTracking(this);
261264
this.userProperties = new UserProperties(this);

0 commit comments

Comments
 (0)