Skip to content

Commit 3fb6f14

Browse files
authored
refactor: update Subject type (#809)
1 parent 728d44a commit 3fb6f14

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/typesGithub.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -126,9 +126,9 @@ export interface Owner {
126126

127127
export interface Subject {
128128
title: string;
129-
url?: string;
130-
state: StateType;
131-
latest_comment_url?: string;
129+
url: string | null;
130+
state?: StateType;
131+
latest_comment_url: string | null;
132132
type: SubjectType;
133133
}
134134

0 commit comments

Comments
 (0)