Skip to content

Commit

Permalink
chore: dummy commit 9.1
Browse files Browse the repository at this point in the history
  • Loading branch information
abdhalees committed Aug 16, 2024
1 parent c52112c commit fb12a39
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/schema/code.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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)) {
Expand Down Expand Up @@ -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 {
Expand Down

0 comments on commit fb12a39

Please sign in to comment.