Skip to content

Commit

Permalink
fix: add BitbucketPRState
Browse files Browse the repository at this point in the history
  • Loading branch information
adelkahomolova committed Dec 2, 2019
1 parent 563a7eb commit e05ca58
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/services/git/ICVSService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,10 @@ export interface ICVSService {
getIssue(owner: string, repo: string, issueNumber: number): Promise<Issue>;
getRepoContent(owner: string, repo: string, path: string): Promise<File | Symlink | Directory | null>;
}

export enum BitbucketPullRequestState {
open = 'OPEN',
closed = 'MERGED',
declined = 'DECLINED',
superseded = 'SUPERSEDED',
}

0 comments on commit e05ca58

Please sign in to comment.