diff --git a/src/typesGithub.ts b/src/typesGithub.ts index 98dfa7f51..3a4b5993c 100644 --- a/src/typesGithub.ts +++ b/src/typesGithub.ts @@ -125,9 +125,9 @@ export interface Owner { export interface Subject { title: string; - url?: string; - state: StateType; - latest_comment_url?: string; + url: string | null; + state?: StateType; + latest_comment_url: string | null; type: SubjectType; }