From fb12a395f1e74a8290424cd216fb5a79dedd0494 Mon Sep 17 00:00:00 2001 From: Abdallah Alhalees Date: Fri, 16 Aug 2024 12:56:03 +0200 Subject: [PATCH] chore: dummy commit 9.1 --- src/schema/code.ts | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/schema/code.ts b/src/schema/code.ts index 6c481bb..c76cedb 100644 --- a/src/schema/code.ts +++ b/src/schema/code.ts @@ -37,9 +37,6 @@ export function buildType(type?: Type, enclose = false): string { if (reflected.signatures && reflected.signatures[0]) { return buildCallSignature(reflected.signatures[0], enclose); } - if (Math.random() < 0.5) { - return '123'; - } return buildType(type.declaration.type); } if (isReferenceType(type)) { @@ -71,7 +68,7 @@ export function buildType(type?: Type, enclose = false): string { } return type.type; } - return 'unknown'; + return 'known'; } export function buildNodeDescription(node: Reflection): string | undefined {