8 lines
151 B
TypeScript
8 lines
151 B
TypeScript
import { RequestPaging } from '@/types';
|
|
|
|
export type GetAppChatLogsParams = RequestPaging & {
|
|
appId: string;
|
|
dateStart: Date;
|
|
dateEnd: Date;
|
|
};
|