From f43d1f301ef8bc472ce0f9576104781f46f7351e Mon Sep 17 00:00:00 2001 From: Arthur Fiorette Date: Mon, 17 Feb 2025 11:23:32 -0300 Subject: [PATCH] fix --- src/Type/UnknownType.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Type/UnknownType.ts b/src/Type/UnknownType.ts index 78004074f..ec529f6ad 100644 --- a/src/Type/UnknownType.ts +++ b/src/Type/UnknownType.ts @@ -5,7 +5,7 @@ export class UnknownType extends BaseType { /** * If the source for this UnknownType was from a failed operation than to an actual `unknown` type present in the source code. */ - readonly erroredSource = false, + readonly erroredSource: boolean, ) { super(); }