Skip to content

Commit

Permalink
Fix dead export
Browse files Browse the repository at this point in the history
  • Loading branch information
twschiller committed Mar 23, 2024
1 parent 641e539 commit 3a9d4c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/schemaUtils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ export function inputProperties(inputSchema: Schema): SchemaProperties {
* Returns true if the schema uses anyOf/oneOf/allOf/not.
* @param schema the JSON Schema
*/
export function isComplexSchema(schema: Schema): boolean {
function isComplexSchema(schema: Schema): boolean {
// https://json-schema.org/understanding-json-schema/reference/combining.html
return (
Boolean(schema.anyOf) ||
Expand Down

0 comments on commit 3a9d4c6

Please sign in to comment.