(block: string)
| 231 | } |
| 232 | |
| 233 | function normalizeExportBlock(block: string): string { |
| 234 | return block |
| 235 | .replace(/\/\*\*[\s\S]*?\*\//g, "") |
| 236 | .split(/\r?\n/) |
| 237 | .map((line) => line.trim()) |
| 238 | .filter((line) => line.length > 0) |
| 239 | .join("\n"); |
| 240 | } |
| 241 | |
| 242 | function collectRpcMethods(node: Record<string, unknown>): RpcMethod[] { |
| 243 | const results: RpcMethod[] = []; |
no test coverage detected
searching dependent graphs…