(jsonSchema: JsonSchema7)
| 1011 | } |
| 1012 | |
| 1013 | function isAny(jsonSchema: JsonSchema7): jsonSchema is JsonSchema7Any { |
| 1014 | return "$id" in jsonSchema && jsonSchema.$id === constAny.$id |
| 1015 | } |
| 1016 | |
| 1017 | function isUnknown(jsonSchema: JsonSchema7): jsonSchema is JsonSchema7Unknown { |
| 1018 | return "$id" in jsonSchema && jsonSchema.$id === constUnknown.$id |
no outgoing calls
no test coverage detected
searching dependent graphs…