From 2000cca0493d4453e64a28945f8e7b5425f94158 Mon Sep 17 00:00:00 2001 From: Erica Marigold Date: Sat, 20 Apr 2024 19:59:26 +0530 Subject: [PATCH] chore(types): revert inaccurate type Co-authored-by: Filip Tibell --- types/net.luau | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/net.luau b/types/net.luau index 33f82fa..e9b793e 100644 --- a/types/net.luau +++ b/types/net.luau @@ -83,7 +83,7 @@ export type ServeRequest = { query: { [string]: string? }, method: HttpMethod, headers: { [string]: string }, - body: string?, + body: string, } --[=[