Add a documentation page for ethereum types

This commit is contained in:
Leonid Logvinov
2018-06-04 10:54:14 -07:00
parent d50fbac5f9
commit 9212d67e2f
15 changed files with 179 additions and 2 deletions

View File

@@ -8,7 +8,7 @@ import convert = require('xml-js');
export const docUtils = {
async getVersionToFilePathAsync(s3DocJsonRoot: string, folderName: string): Promise<VersionToFilePath> {
const versionFilePaths = await this.getVersionFileNamesAsync(s3DocJsonRoot, folderName);
const versionFilePaths = await docUtils.getVersionFileNamesAsync(s3DocJsonRoot, folderName);
const versionToFilePath: VersionToFilePath = {};
_.each(versionFilePaths, filePath => {
const [version] = findVersions(filePath);