From aa9c1e7c96fcbc23462a6f1488cb53c11dc42caa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Krist=C3=B3f=20Poduszl=C3=B3?= Date: Mon, 3 May 2021 14:31:56 +0200 Subject: [PATCH] fix(ts): unset generics defaults for overriding (#1891) Co-authored-by: Lluis Agusti --- types/adapters.d.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/types/adapters.d.ts b/types/adapters.d.ts index 4c592b370c..8ef4203e29 100644 --- a/types/adapters.d.ts +++ b/types/adapters.d.ts @@ -120,9 +120,9 @@ export interface AdapterInstance { export type Adapter< C = Record, O = Record, - U = User, - P = Profile, - S = Session + U = unknown, + P = unknown, + S = unknown > = ( config?: C, options?: O