(nodes: ReadonlyArray<ts.Declaration>)
| 586 | } |
| 587 | |
| 588 | const displayDeclarations = (nodes: ReadonlyArray<ts.Declaration>): string => |
| 589 | nodes.map((node) => node.getText().replace(/\/\*\*[\s\S]*?\*\//g, "").replace(/\s+/g, " ").trim()).join("\n") |
| 590 | |
| 591 | const fingerprintDeclarations = (declarations: ReadonlyArray<DeclarationModel>): string => { |
| 592 | const normalize = (value: unknown, parent?: string): unknown => { |
no test coverage detected