(value: unknown)
| 740 | }).pipe(Effect.withSpan("OpenApi.streamOperationBindings")); |
| 741 | |
| 742 | const isPathItemValue = (value: unknown): value is Record<string, unknown> => |
| 743 | value !== null && typeof value === "object" && !Array.isArray(value); |
| 744 | |
| 745 | /** |
| 746 | * Stream invocation bindings straight from a `SpecStructure` (the structural |