mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +08:00
Remove unusued function arg (deepscan)
This commit is contained in:
parent
4884f786a9
commit
cb1c523118
@ -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}`);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user