From 2b445500fead2b163623a781af1cb0ab019114e9 Mon Sep 17 00:00:00 2001 From: vanyauhalin Date: Mon, 9 Dec 2024 16:01:15 +0400 Subject: [PATCH] temp: add typedoc-declaration package x13 --- packages/typedoc-declaration/lib/internal.ts | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/packages/typedoc-declaration/lib/internal.ts b/packages/typedoc-declaration/lib/internal.ts index 2019cb678..4f93c131a 100644 --- a/packages/typedoc-declaration/lib/internal.ts +++ b/packages/typedoc-declaration/lib/internal.ts @@ -567,7 +567,6 @@ export function shakeItems(o: J.Reflection, c: Item[]): Entity[] { p.children.push(...t.children) if (p instanceof Declaration) { - p.properties.push(...t.properties) p.parameters.push(...t.parameters) } @@ -755,7 +754,6 @@ export class Declaration { name = "" trail = new TrailDuplex() narrative = new Narrative() - properties: Fragment[] = [] parameters: Fragment[] = [] parentId = -1 children: number[] = [] @@ -819,11 +817,6 @@ export class Declaration { d.summary = this.narrative.summary d.description = this.narrative.description - for (const f of this.properties) { - const t = f.to() - d.properties.push(t) - } - for (const f of this.parameters) { const t = f.to() d.parameters.push(t) @@ -1214,12 +1207,6 @@ export class Repository { const f = flatTrail(t.trail.real) r.#trailIndex.set(d, f) - for (const [i, p] of t.properties.entries()) { - const e = d.properties[i] - const f = flatTrail(p.trail.real) - r.#trailIndex.set(e, f) - } - for (const [i, p] of t.parameters.entries()) { const e = d.parameters[i] const f = flatTrail(p.trail.real)