(input: any)
| 182 | |
| 183 | // eslint-disable-next-line @typescript-eslint/no-explicit-any |
| 184 | export const isZodType = (input: any): input is z.ZodTypeAny => { |
| 185 | return input?._def?.typeName; |
| 186 | }; |
| 187 | |
| 188 | export const INTERRUPT_KEY = "__inferable_interrupt"; |
| 189 | type VALID_INTERRUPT_TYPES = "approval" | "general"; |
no outgoing calls
no test coverage detected