1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16export default interface getLogsResponseLog { created_at: string, data: Object, message: string, LogToUser: { name: string, email: string }, LogToAudit: { name: string } | null } export default interface getLogsResponse { logs: getLogsResponseLog[]; logs_aggregate: { aggregate: { count: number } } }