(text: string)
| 756 | } |
| 757 | |
| 758 | function pyDocstringLiteral(text: string): string { |
| 759 | const normalized = text |
| 760 | .split(/\r?\n/) |
| 761 | .map((line) => line.replace(/\s+$/g, "")) |
| 762 | .join("\n"); |
| 763 | return JSON.stringify(normalized); |
| 764 | } |
| 765 | |
| 766 | function rpcResultDescription(method: RpcMethod, resultSchema: JSONSchema7 | undefined): string | undefined { |
| 767 | if (isVoidSchema(resultSchema)) return undefined; |
no test coverage detected
searching dependent graphs…