UNPKG

@hz-9/a5-authn

Version:

Authentication module for the @hz-9/a5-* series of repositories.

14 lines (13 loc) 513 B
import { z } from '@hz-9/a5-crud-zod'; export declare const A5AuthnRefreshTokenReqDtoSchema: z.ZodObject<{ refreshToken: z.ZodString; }, z.core.$strip>; declare const A5AuthnRefreshTokenReqDto_base: import("nestjs-zod").ZodDto<z.ZodObject<{ refreshToken: z.ZodString; }, z.core.$strip>> & { io: "input"; }; export declare class A5AuthnRefreshTokenReqDto extends A5AuthnRefreshTokenReqDto_base { } export type A5AuthnRefreshTokenReqDtoType = z.infer<typeof A5AuthnRefreshTokenReqDtoSchema>; export {};