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
310 B
TypeScript
13 lines
310 B
TypeScript
/**
|
|
* 刷新 Token 请求
|
|
*
|
|
*/
|
|
import { z } from "zod";
|
|
|
|
export const RefreshTokenRequestSchema = z.object({
|
|
refreshToken: z.string(),
|
|
});
|
|
|
|
export type RefreshTokenRequestInput = z.input<typeof RefreshTokenRequestSchema>;
|
|
export type RefreshTokenRequestData = z.output<typeof RefreshTokenRequestSchema>;
|