(value: string)
| 260 | } |
| 261 | |
| 262 | function lowerFirst(value: string): string { |
| 263 | if (value.length === 0) return value; |
| 264 | return value.charAt(0).toLowerCase() + value.slice(1); |
| 265 | } |
| 266 | |
| 267 | function goMethodDocSummary(methodName: string, method: RpcMethod, fallbackVerb = "calls"): string { |
| 268 | const description = method.description?.trim(); |
no outgoing calls
no test coverage detected
searching dependent graphs…