Skip to content

Commit

Permalink
fix(ts): unset generics defaults for overriding (#1891)
Browse files Browse the repository at this point in the history
Co-authored-by: Lluis Agusti <hi@llu.lu>
  • Loading branch information
kripod and ubbe-xyz committed May 3, 2021
1 parent 6647305 commit aa9c1e7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions types/adapters.d.ts
Expand Up @@ -120,9 +120,9 @@ export interface AdapterInstance<U = User, P = Profile, S = Session> {
export type Adapter<
C = Record<string, unknown>,
O = Record<string, unknown>,
U = User,
P = Profile,
S = Session
U = unknown,
P = unknown,
S = unknown
> = (
config?: C,
options?: O
Expand Down

1 comment on commit aa9c1e7

@vercel
Copy link

@vercel vercel bot commented on aa9c1e7 May 3, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.