Skip to content

Commit

Permalink
refactor: update Subject type
Browse files Browse the repository at this point in the history
  • Loading branch information
setchy committed Feb 21, 2024
1 parent 203f78e commit 1188770
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/typesGithub.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

Expand Down

0 comments on commit 1188770

Please sign in to comment.