UNPKG

@clerk/express

Version:

Clerk server SDK for usage with Express

13 lines (11 loc) 276 B
import type { AuthObject } from '@clerk/backend'; import type { PendingSessionOptions } from '@clerk/types'; declare global { namespace Express { interface Request { auth: AuthObject & { (options?: PendingSessionOptions): AuthObject; }; } } }