(value: unknown)
| 1791 | }; |
| 1792 | |
| 1793 | const isReadonlyRecord = (value: unknown): value is Readonly<Record<PropertyKey, unknown>> => |
| 1794 | typeof value === "object" && value !== null; |
| 1795 | |
| 1796 | type StandardJsonSchemaSide = "input" | "output"; |
| 1797 | type StandardJsonSchemaFns = { |
no outgoing calls
no test coverage detected