UNPKG

alapa

Version:

A cutting-edge web development framework designed to revolutionize the way developers build modern web applications.

10 lines (9 loc) 231 B
export interface JWTConfiguration { secret?: string; expiresAt?: number; algorithm?: "HS256" | "HS384" | "HS512"; refreshSecret?: string; refreshExpiresIn?: string; issuer?: string; audience?: string; }