satisfy linter

This commit is contained in:
F. Eugene Aumson
2018-08-31 10:04:03 -04:00
parent 50b725c687
commit 327b4ba554
6 changed files with 4 additions and 12 deletions

View File

@@ -468,6 +468,7 @@ export class TypeDocUtils {
methodIfExists = this._convertMethod(entity.declaration, isConstructor, sectionName);
} else if (entity.type === TypeDocTypes.Tuple) {
tupleElementsIfExists = _.map(entity.elements, el => {
// tslint:disable-next-line:no-unnecessary-type-assertion
return { name: el.name, typeDocType: el.type as TypeDocTypes };
});
}