- {method.name}(
- {method.params.map((param, i, { length }) => (
-
- {param.name}{' '}
+
+ {method.name}(
+ {method.params.map((param, i, { length }) => (
+
+ {param.name}{' '}
+ activateSidebar(param)}
+ >
+ {param.description}
+ {length - 1 != i && ', '}
+
+
+ ))}
+ n )
+ {method.result.description != 'Null' && (
activateSidebar(param)}
+ className='ml-2 text-sm text-blue-500 hover:cursor-pointer hover:font-bold'
+ onClick={() => activateSidebar(method.result)}
>
- {param.description}
- {length - 1 != i && ', '}
+ {method.result.description}
+ )}
+
+ perms: {method.auth}
- ))}
- )
- {method.result.description != 'Null' && (
+ {method.description}