(value: unknown)
| 1253 | }; |
| 1254 | |
| 1255 | const isReadonlyRecord = (value: unknown): value is Readonly<Record<PropertyKey, unknown>> => |
| 1256 | typeof value === "object" && value !== null; |
| 1257 | |
| 1258 | type StandardJsonSchemaSide = "input" | "output"; |
| 1259 | type StandardJsonSchemaFns = { |
no outgoing calls
no test coverage detected