From 906c644fc90a262faef04f0064751f7671e7ce09 Mon Sep 17 00:00:00 2001 From: dangered wolf Date: Fri, 9 Feb 2024 16:48:25 -0500 Subject: [PATCH] Fix status type marked as optional --- src/types/types.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/types/types.d.ts b/src/types/types.d.ts index b690539..b97c382 100644 --- a/src/types/types.d.ts +++ b/src/types/types.d.ts @@ -28,7 +28,7 @@ interface ResponseInstructions { } interface RenderProperties { - status?: APITwitterStatus; + status: APITwitterStatus; thread?: SocialThread; siteText?: string; authorText?: string;