Skip to content

Commit

Permalink
fix: add BitbucketIssueState enum
Browse files Browse the repository at this point in the history
  • Loading branch information
adelkahomolova committed Dec 2, 2019
1 parent d431eed commit 563a7eb
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/inspectors/IIssueTrackingInspector.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,14 @@ export enum IssueState {
all = 'all',
}

export enum BitbucketIssueState {
new = 'new',
closed = 'closed',
duplicate = 'duplicate',
resolved = 'resolved',
invalid = 'invalid',
}

export interface IIssueTrackingInspector {
getIssues(owner: string, repo: string): Promise<Paginated<Issue>>;
getIssue(owner: string, repo: string, id: number): Promise<Issue>;
Expand Down

0 comments on commit 563a7eb

Please sign in to comment.