diff options
Diffstat (limited to 'scripts')
| -rw-r--r-- | scripts/apidoc/signature.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/apidoc/signature.ts b/scripts/apidoc/signature.ts index b7c23842..fe11c78d 100644 --- a/scripts/apidoc/signature.ts +++ b/scripts/apidoc/signature.ts @@ -64,7 +64,7 @@ export async function analyzeSignature( // Generate usage section let signatureTypeParametersString = ''; - if (signatureTypeParameters.length !== 0) { + if (signatureTypeParameters.length > 0) { signatureTypeParametersString = `<${signatureTypeParameters.join(', ')}>`; } @@ -207,7 +207,7 @@ async function typeToText(type_?: Type, short = false): Promise<string> { .join(' | '); case 'reference': - if (!type.typeArguments || !type.typeArguments.length) { + if (!type.typeArguments || type.typeArguments.length === 0) { const reflection = type.reflection as DeclarationReflection | undefined; const reflectionType = reflection?.type; if ( |
