fix(zod-openapi): correct importing `zod` (#1319)

pull/1320/head
Yusuke Wada 2025-07-19 18:03:34 +09:00 committed by GitHub
parent 7d82875634
commit 2339eefa1c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -39,8 +39,8 @@ import type { JSONParsed, JSONValue, RemoveBlankRecord, SimplifyDeepArray } from
import { mergePath } from 'hono/utils/url' import { mergePath } from 'hono/utils/url'
import type { OpenAPIObject } from 'openapi3-ts/oas30' import type { OpenAPIObject } from 'openapi3-ts/oas30'
import type { OpenAPIObject as OpenAPIV31bject } from 'openapi3-ts/oas31' import type { OpenAPIObject as OpenAPIV31bject } from 'openapi3-ts/oas31'
import { ZodType, z } from 'zod/v4' import { ZodType, z } from 'zod'
import type { ZodError } from 'zod/v4' import type { ZodError } from 'zod'
type MaybePromise<T> = Promise<T> | T type MaybePromise<T> = Promise<T> | T