(node: unknown)
| 510 | } |
| 511 | |
| 512 | export function isRpcMethod(node: unknown): node is RpcMethod { |
| 513 | return typeof node === "object" && node !== null && "rpcMethod" in node; |
| 514 | } |
| 515 | |
| 516 | /** |
| 517 | * Apply `normalizeNullableRequiredRefs` to every JSON Schema reachable from the API schema |
no outgoing calls
no test coverage detected
searching dependent graphs…