6e51cb7d16
- Updated comments in various components, schemas, and repositories to remove references to original Dart files. - Ensured consistency in documentation while maintaining the context of the code.
13 lines
285 B
TypeScript
13 lines
285 B
TypeScript
/**
|
|
* 发送验证码请求
|
|
*
|
|
*/
|
|
import { z } from "zod";
|
|
|
|
export const SendCodeRequestSchema = z.object({
|
|
email: z.string(),
|
|
});
|
|
|
|
export type SendCodeRequestInput = z.input<typeof SendCodeRequestSchema>;
|
|
export type SendCodeRequestData = z.output<typeof SendCodeRequestSchema>;
|