aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--packages/react-docs/src/utils/typedoc_utils.ts9
1 files changed, 8 insertions, 1 deletions
diff --git a/packages/react-docs/src/utils/typedoc_utils.ts b/packages/react-docs/src/utils/typedoc_utils.ts
index e2b259b13..35d28627f 100644
--- a/packages/react-docs/src/utils/typedoc_utils.ts
+++ b/packages/react-docs/src/utils/typedoc_utils.ts
@@ -336,7 +336,14 @@ export const typeDocUtils = {
};
return method;
},
- _getCallPath(sectionName: string, sections: SectionsMap, isStatic: boolean, isConstructor: boolean, docId: string, entityName: string) {
+ _getCallPath(
+ sectionName: string,
+ sections: SectionsMap,
+ isStatic: boolean,
+ isConstructor: boolean,
+ docId: string,
+ entityName: string,
+ ) {
// HACK: we use the fact that the sectionName is the same as the property name at the top-level
// of the public interface. In the future, we shouldn't use this hack but rather get it from the JSON.
let callPath;