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.
14 lines
301 B
TypeScript
14 lines
301 B
TypeScript
/**
|
|
* 消息同步响应
|
|
*
|
|
*/
|
|
import { z } from "zod";
|
|
|
|
export const ChatSyncDataSchema = z.object({
|
|
syncedCount: z.number(),
|
|
totalHistory: z.number(),
|
|
});
|
|
|
|
export type ChatSyncDataInput = z.input<typeof ChatSyncDataSchema>;
|
|
export type ChatSyncDataData = z.output<typeof ChatSyncDataSchema>;
|