Skip to content

Commit 64be85f

Browse files
setchyadufr
authored andcommitted
refactor: order state types alphabetically (gitify-app#825)
1 parent 16cf02a commit 64be85f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/typesGithub.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,12 @@ export type SubjectType =
2828

2929
export type IssueStateType =
3030
| 'closed'
31-
| 'open'
3231
| 'completed'
33-
| 'reopened'
34-
| 'not_planned';
32+
| 'not_planned'
33+
| 'open'
34+
| 'reopened';
3535

36-
export type PullRequestStateType = 'closed' | 'open' | 'merged' | 'draft';
36+
export type PullRequestStateType = 'closed' | 'draft' | 'merged' | 'open';
3737

3838
export type StateType = IssueStateType | PullRequestStateType;
3939

0 commit comments

Comments
 (0)