(sessionId: string, filter?: any)
| 352 | } |
| 353 | |
| 354 | export async function getMessageLengthDistribution(sessionId: string, filter?: any): Promise<any[]> { |
| 355 | return sendToWorker('getMessageLengthDistribution', { sessionId, filter }) |
| 356 | } |
| 357 | |
| 358 | export async function getMessageTypeDistribution(sessionId: string, filter?: any): Promise<any[]> { |
| 359 | return sendToWorker('getMessageTypeDistribution', { sessionId, filter }) |
nothing calls this directly
no test coverage detected