@hz-9/a5-authn
Version:
Authentication module for the @hz-9/a5-* series of repositories.
14 lines (13 loc) • 481 B
TypeScript
import { z } from '@hz-9/a5-crud-zod';
export declare const A5AuthnEmailSendReqDtoSchema: z.ZodObject<{
email: z.ZodString;
}, z.core.$strip>;
declare const A5AuthnEmailSendReqDto_base: import("nestjs-zod").ZodDto<z.ZodObject<{
email: z.ZodString;
}, z.core.$strip>> & {
io: "input";
};
export declare class A5AuthnEmailSendReqDto extends A5AuthnEmailSendReqDto_base {
}
export type A5AuthnEmailSendReqDtoType = z.infer<typeof A5AuthnEmailSendReqDtoSchema>;
export {};