MCPcopy Index your code
hub / github.com/github/copilot-sdk / isRpcMethod

Function isRpcMethod

java/scripts/codegen/java.ts:1239–1241  ·  view source on GitHub ↗
(node: unknown)

Source from the content-addressed store, hash-verified

1237}
1238
1239function isRpcMethod(node: unknown): node is RpcMethod {
1240 return typeof node === "object" && node !== null && "rpcMethod" in node;
1241}
1242
1243function collectRpcMethods(node: Record<string, unknown>): [string, RpcMethod][] {
1244 const results: [string, RpcMethod][] = [];

Callers 1

collectRpcMethodsFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…