We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 16cf02a commit 64be85fCopy full SHA for 64be85f
src/typesGithub.ts
@@ -28,12 +28,12 @@ export type SubjectType =
28
29
export type IssueStateType =
30
| 'closed'
31
- | 'open'
32
| 'completed'
33
- | 'reopened'
34
- | 'not_planned';
+ | 'not_planned'
+ | 'open'
+ | 'reopened';
35
36
-export type PullRequestStateType = 'closed' | 'open' | 'merged' | 'draft';
+export type PullRequestStateType = 'closed' | 'draft' | 'merged' | 'open';
37
38
export type StateType = IssueStateType | PullRequestStateType;
39
0 commit comments