(description?: string)
| 62 | }; |
| 63 | |
| 64 | export const validateDescription = (description?: string) => { |
| 65 | if (description === "") { |
| 66 | throw new AgentRPCError("Description must not be empty"); |
| 67 | } |
| 68 | }; |
| 69 | |
| 70 | /* |
| 71 | * Validate a function schema. |
nothing calls this directly
no outgoing calls
no test coverage detected