Skip to content

authjoy


authjoy / JwtConfigSchema

Variable: JwtConfigSchema

const JwtConfigSchema: ZodObject<{ algorithm: ZodDefault<ZodEnum<{ ES256: "ES256"; RS256: "RS256"; }>>; audience: ZodOptional<ZodString>; expiresIn: ZodDefault<ZodUnion<readonly [ZodString, ZodNumber]>>; issuer: ZodOptional<ZodString>; secret: ZodString; }, $strip>

Defined in: src/auth/strategies/jwt/base/types.ts:8

Released under the MIT License.