2023-08-28 21:36:37 +08:00

8 lines
151 B
TypeScript

import { RequestPaging } from '@/types';
export type GetAppChatLogsParams = RequestPaging & {
appId: string;
dateStart: Date;
dateEnd: Date;
};