Refactor: Gist card: Fix description type since it can be not set (#3089)

This commit is contained in:
Alexandr Garbuzov
2023-08-17 10:43:06 +03:00
committed by GitHub
parent 5afd97a94b
commit 24ac78bdb0
+1 -1
View File
@@ -1,7 +1,7 @@
export type GistData = {
name: string;
nameWithOwner: string;
description: string;
description: string | null;
language: string | null;
starsCount: number;
forksCount: number;