Skip to content

Commit

Permalink
fix: mark gid_x as optional
Browse files Browse the repository at this point in the history
  • Loading branch information
thislooksfun committed Mar 13, 2021
1 parent 8c33a5b commit 35a38b2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/objects/voteable.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,11 @@ export type RichTextFlair = RichTextFlairText | RichTextFlairEmoji;

export interface Gildings {
/** Number of Reddit Silver awarded */
gid_1: number;
gid_1?: number;
/** Number of Reddit Gold awarded */
gid_2: number;
gid_2?: number;
/** Number of Reddit Platinum awarded */
gid_3: number;
gid_3?: number;
}

export type SubredditType =
Expand Down

0 comments on commit 35a38b2

Please sign in to comment.