From 11887703cb6ad5b204145c22ff9c7a31a1f9dee7 Mon Sep 17 00:00:00 2001 From: Adam Setch Date: Wed, 21 Feb 2024 11:29:24 -0400 Subject: [PATCH] refactor: update Subject type --- src/typesGithub.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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; }