@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 A5AuthnPhoneVerifyReqDtoSchema: z.ZodObject<{
phone: z.ZodString;
code: z.ZodString;
}, z.core.$strip>;
declare const A5AuthnPhoneVerifyReqDto_base: import("nestjs-zod").ZodDto<z.ZodObject<{
phone: z.ZodString;
code: z.ZodString;
}, z.core.$strip>> & {
io: "input";
};
export declare class A5AuthnPhoneVerifyReqDto extends A5AuthnPhoneVerifyReqDto_base {
}
export type A5AuthnPhoneVerifyReqDtoType = z.infer<typeof A5AuthnPhoneVerifyReqDtoSchema>;
export {};