(value: unknown)
| 1514 | }; |
| 1515 | |
| 1516 | const isReadonlyRecord = (value: unknown): value is Readonly<Record<PropertyKey, unknown>> => |
| 1517 | typeof value === "object" && value !== null; |
| 1518 | |
| 1519 | type StandardJsonSchemaSide = "input" | "output"; |
| 1520 | type StandardJsonSchemaFns = { |
no outgoing calls
no test coverage detected