We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b13bd76 commit 29cc976Copy full SHA for 29cc976
apps/api-extractor/src/generators/DeclarationReferenceGenerator.ts
@@ -60,6 +60,7 @@ export class DeclarationReferenceGenerator {
60
private static _isInExpressionContext(node: ts.Node): boolean {
61
switch (node.parent.kind) {
62
case ts.SyntaxKind.TypeQuery:
63
+ case ts.SyntaxKind.ComputedPropertyName:
64
return true;
65
case ts.SyntaxKind.QualifiedName:
66
return DeclarationReferenceGenerator._isInExpressionContext(node.parent);
0 commit comments