Skip to content

Commit

Permalink
prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
theahura authored Feb 22, 2023
1 parent e39353f commit 6a8bf83
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/types/json-schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ type UncheckedJSONSchemaType<T, IsPartial extends boolean> = (
// "properties" are optional for more concise dictionary schemas
// "patternProperties" and can be only used with interfaces that have string index
type: JSONType<"object", IsPartial>
additionalProperties?: boolean | UncheckedJSONSchemaType<T[string], false> | { $ref: string }
additionalProperties?: boolean | UncheckedJSONSchemaType<T[string], false> | {$ref: string}
unevaluatedProperties?: boolean | UncheckedJSONSchemaType<T[string], false>
properties?: IsPartial extends true
? Partial<UncheckedPropertiesSchema<T>>
Expand Down

0 comments on commit 6a8bf83

Please sign in to comment.