aboutsummaryrefslogtreecommitdiffstats
path: root/packages/react-docs
diff options
context:
space:
mode:
authorFabio Berger <me@fabioberger.com>2018-08-02 23:27:29 +0800
committerFabio Berger <me@fabioberger.com>2018-08-02 23:27:29 +0800
commit9a3b630b1989abbe1d6784f121fd0a60169e3012 (patch)
tree5eb8ad2a6e7c74531baaccca0cfa1c51cddfbd8c /packages/react-docs
parentb3473ff89f4d276fe74dd8e62680ab975fe24639 (diff)
downloaddexon-sol-tools-9a3b630b1989abbe1d6784f121fd0a60169e3012.tar
dexon-sol-tools-9a3b630b1989abbe1d6784f121fd0a60169e3012.tar.gz
dexon-sol-tools-9a3b630b1989abbe1d6784f121fd0a60169e3012.tar.bz2
dexon-sol-tools-9a3b630b1989abbe1d6784f121fd0a60169e3012.tar.lz
dexon-sol-tools-9a3b630b1989abbe1d6784f121fd0a60169e3012.tar.xz
dexon-sol-tools-9a3b630b1989abbe1d6784f121fd0a60169e3012.tar.zst
dexon-sol-tools-9a3b630b1989abbe1d6784f121fd0a60169e3012.zip
prettier
Diffstat (limited to 'packages/react-docs')
-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;