(value: unknown)
| 1275 | }; |
| 1276 | |
| 1277 | const isReadonlyRecord = (value: unknown): value is Readonly<Record<PropertyKey, unknown>> => |
| 1278 | typeof value === "object" && value !== null; |
| 1279 | |
| 1280 | type StandardJsonSchemaSide = "input" | "output"; |
| 1281 | type StandardJsonSchemaFns = { |
no outgoing calls
no test coverage detected