From 64850d217f96f2382c0af553870761a490230ad1 Mon Sep 17 00:00:00 2001 From: Jesus Graterol Date: Tue, 11 Feb 2025 13:59:55 -0400 Subject: [PATCH] Fix docs Signed-off-by: Jesus Graterol --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index cf39a46..b5ec2c4 100644 --- a/README.md +++ b/README.md @@ -89,7 +89,7 @@ interface IAPIResponse { success: boolean, // the data that will be sent to the client (regardless of the request's outcome) - data: T, + data: T | undefined, // the error thrown during the handling of the request (if any) error: string | undefined