Skip to content

Commit

Permalink
use workaround for type inlining
Browse files Browse the repository at this point in the history
  • Loading branch information
millsp committed Jul 11, 2023
1 parent 52ac604 commit 37305a1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions packages/client/src/generation/TSClient/common.ts
Original file line number Diff line number Diff line change
Expand Up @@ -185,10 +185,10 @@ export type MetricHistogramBucket = runtime.MetricHistogramBucket
*/
export type Extension = $Extensions.UserArgs
export import getExtensionContext = runtime.Extensions.getExtensionContext
export type Args<T, F extends $Public.Operation> = $Public.Args<T, F>
export type Payload<T, F extends $Public.Operation> = $Public.Payload<T, F>
export type Result<T, A, F extends $Public.Operation> = $Public.Result<T, A, F>
export type Exact<T, W> = $Public.Exact<T, W>
export type Args<T, F extends $Public.Operation> = $Public.Args<T, F> & unknown
export type Payload<T, F extends $Public.Operation> = $Public.Payload<T, F> & unknown
export type Result<T, A, F extends $Public.Operation> = $Public.Result<T, A, F> & unknown
export type Exact<T, W> = $Public.Exact<T, W> & unknown
/**
* Prisma Client JS version: ${clientVersion}
Expand Down

0 comments on commit 37305a1

Please sign in to comment.