Skip to content

Commit 983ed2e

Browse files
authored
refactor: order state types alphabetically (#825)
1 parent 70300fd commit 983ed2e

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)