Skip to content

Commit

Permalink
style(schema.types): simplify import statements
Browse files Browse the repository at this point in the history
  • Loading branch information
rifont committed Sep 9, 2024
1 parent 83e4a76 commit e290f8f
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions packages/framework/src/types/schema.types.ts
Original file line number Diff line number Diff line change
@@ -1,13 +1,7 @@
import type {
ExtendedJSONSchema,
JSONSchemaExtension,
JSONSchema,
FromSchema as JsonSchemaInfer,
} from 'json-schema-to-ts';
import type { JSONSchema, FromSchema as JsonSchemaInfer } from 'json-schema-to-ts';
import zod from 'zod';

export type JsonSchema = JSONSchema;
export type ExtendedJsonSchema<T extends JSONSchemaExtension = JSONSchemaExtension> = ExtendedJSONSchema<T>;

/**
* A schema used to validate a JSON object.
Expand Down

0 comments on commit e290f8f

Please sign in to comment.