Skip to content

Variable: authBearerSchema

ts
const authBearerSchema: ZodUnion<readonly [ZodObject<{
  token: ZodString;
  type: ZodLiteral<"bearer">;
}, $strip>, ZodObject<{
  getToken: ZodCustom<() => Promise<string>, () => Promise<string>>;
  type: ZodLiteral<"bearer">;
}, $strip>]>;

Defined in: src/core/schemas/auth.ts:22