@hz-9/a5-authn
Version:
Authentication module for the @hz-9/a5-* series of repositories.
16 lines (15 loc) • 539 B
TypeScript
import { z } from '@hz-9/a5-crud-zod';
export declare const A5AuthnEmailVerifyReqDtoSchema: z.ZodObject<{
email: z.ZodString;
code: z.ZodString;
}, z.core.$strip>;
declare const A5AuthnEmailVerifyReqDto_base: import("nestjs-zod").ZodDto<z.ZodObject<{
email: z.ZodString;
code: z.ZodString;
}, z.core.$strip>> & {
io: "input";
};
export declare class A5AuthnEmailVerifyReqDto extends A5AuthnEmailVerifyReqDto_base {
}
export type A5AuthnEmailVerifyReqDtoType = z.infer<typeof A5AuthnEmailVerifyReqDtoSchema>;
export {};