* Type guard to check if a schema is a SchemaObject (not a ReferenceObject)
(schema: SchemaOrRef)
| 209 | * Type guard to check if a schema is a SchemaObject (not a ReferenceObject) |
| 210 | */ |
| 211 | private isSchemaObject(schema: SchemaOrRef): schema is SchemaObject { |
| 212 | return !("$ref" in schema); |
| 213 | } |
| 214 | } |
no outgoing calls
no test coverage detected