feat: list properties and method in table of content

This commit is contained in:
iCrawl
2022-08-22 14:30:15 +02:00
parent 9f18036078
commit e5678f4656
4 changed files with 30 additions and 8 deletions

View File

@@ -14,6 +14,7 @@ export function Class({ data }: { data: ApiClassJSON }) {
implementsTokens={data.implementsTokens}
comment={data.comment}
methods={data.methods}
properties={data.properties}
>
{data.constructor ? <ConstructorSection data={data.constructor} /> : null}
<PropertiesSection data={data.properties} />