alepha
Version:
Easy-to-use modern TypeScript framework for building many kind of applications.
17 lines (14 loc) • 456 B
text/typescript
import type { Static } from "alepha";
import { z } from "alepha";
export const validateVerificationCodeResponseSchema = z.object({
ok: z
.boolean()
.describe("Indicates whether the verification was successful."),
alreadyVerified: z
.boolean()
.describe("Indicates whether the target was already verified.")
.optional(),
});
export type ValidateVerificationCodeResponse = Static<
typeof validateVerificationCodeResponseSchema
>;