Remove unusued function arg (deepscan)

This commit is contained in:
Tom Coleman 2021-09-07 17:25:00 +10:00
parent 4884f786a9
commit cb1c523118

View File

@ -42,7 +42,7 @@ export const checkValidCompodocJson = (compodocJson: CompodocJson) => {
const hasDecorator = (item: Property, decoratorName: string) =>
item.decorators && item.decorators.find((x: any) => x.name === decoratorName);
const mapPropertyToSection = (key: string, item: Property) => {
const mapPropertyToSection = (item: Property) => {
if (hasDecorator(item, 'ViewChild')) {
return 'view child';
}
@ -72,7 +72,7 @@ const mapItemToSection = (key: string, item: Method | Property): string => {
if (isMethod(item)) {
throw new Error("Cannot be of type Method if key === 'propertiesClass'");
}
return mapPropertyToSection(key, item);
return mapPropertyToSection(item);
default:
throw new Error(`Unknown key: ${key}`);
}