Auth Storage Adapter

Types

Types

AuthToStorage

type AuthToStorage = T & { id: string; createdAt: string; updatedAt: string; }

StorageToAuth

type StorageToAuth = { [P in Exclude<keyof T, "createdAt" | "updatedAt">]: T[P]; }
Previous
Interfaces