aboutsummaryrefslogtreecommitdiffstats
path: root/packages/website/ts/containers/ethereum_types_documentation.ts
diff options
context:
space:
mode:
authorFabio Berger <me@fabioberger.com>2018-08-02 03:00:45 +0800
committerFabio Berger <me@fabioberger.com>2018-08-02 03:00:45 +0800
commit2494af99aad4dd58c0d4e647dedf72946cb3c20b (patch)
treed2c20e41b4cd11874a222897970b2597b2e03092 /packages/website/ts/containers/ethereum_types_documentation.ts
parente5b93d1f0292cb6cc38d3f92d623b27cba6ac233 (diff)
downloaddexon-sol-tools-2494af99aad4dd58c0d4e647dedf72946cb3c20b.tar
dexon-sol-tools-2494af99aad4dd58c0d4e647dedf72946cb3c20b.tar.gz
dexon-sol-tools-2494af99aad4dd58c0d4e647dedf72946cb3c20b.tar.bz2
dexon-sol-tools-2494af99aad4dd58c0d4e647dedf72946cb3c20b.tar.lz
dexon-sol-tools-2494af99aad4dd58c0d4e647dedf72946cb3c20b.tar.xz
dexon-sol-tools-2494af99aad4dd58c0d4e647dedf72946cb3c20b.tar.zst
dexon-sol-tools-2494af99aad4dd58c0d4e647dedf72946cb3c20b.zip
Prefix menu and sections with markdown as that is all the should now be defined
Diffstat (limited to 'packages/website/ts/containers/ethereum_types_documentation.ts')
-rw-r--r--packages/website/ts/containers/ethereum_types_documentation.ts16
1 files changed, 8 insertions, 8 deletions
diff --git a/packages/website/ts/containers/ethereum_types_documentation.ts b/packages/website/ts/containers/ethereum_types_documentation.ts
index 041a6bea3..5f08e0236 100644
--- a/packages/website/ts/containers/ethereum_types_documentation.ts
+++ b/packages/website/ts/containers/ethereum_types_documentation.ts
@@ -14,7 +14,7 @@ const IntroMarkdown = require('md/docs/ethereum_types/introduction');
const InstallationMarkdown = require('md/docs/ethereum_types/installation');
/* tslint:enable:no-var-requires */
-const docSections = {
+const markdownSections = {
introduction: 'introduction',
installation: 'installation',
types: docConstants.TYPES_SECTION_NAME,
@@ -25,18 +25,18 @@ const docsInfoConfig: DocsInfoConfig = {
type: SupportedDocJson.TypeDoc,
displayName: 'Ethereum Types',
packageUrl: 'https://github.com/0xProject/0x-monorepo/packages/ethereum-types',
- menu: {
- introduction: [docSections.introduction],
- install: [docSections.installation],
- types: [docSections.types],
+ markdownMenu: {
+ introduction: [markdownSections.introduction],
+ install: [markdownSections.installation],
+ types: [markdownSections.types],
},
sectionNameToMarkdownByVersion: {
'0.0.1': {
- [docSections.introduction]: IntroMarkdown,
- [docSections.installation]: InstallationMarkdown,
+ [markdownSections.introduction]: IntroMarkdown,
+ [markdownSections.installation]: InstallationMarkdown,
},
},
- sections: docSections,
+ markdownSections: markdownSections,
typeConfigs: {
typeNameToExternalLink: {
BigNumber: constants.URL_BIGNUMBERJS_GITHUB,