UNPKG

@raddiamond/nexauth-core

Version:

Core authentication plugin supporting Local, AD authentication

8 lines (7 loc) 203 B
interface MinimalUser { userId: string | number; email: string; roles?: string[]; } export declare function IssueToken<T extends MinimalUser>(user: T, expiresIn?: string): string; export {};