(sessionId: string, filter?: any)
| 348 | } |
| 349 | |
| 350 | export async function getYearlyActivity(sessionId: string, filter?: any): Promise<any[]> { |
| 351 | return sendToWorker('getYearlyActivity', { sessionId, filter }) |
| 352 | } |
| 353 | |
| 354 | export async function getMessageLengthDistribution(sessionId: string, filter?: any): Promise<any[]> { |
| 355 | return sendToWorker('getMessageLengthDistribution', { sessionId, filter }) |
nothing calls this directly
no test coverage detected