(writer: InternalEventWriter)
| 499 | * instead of going through v1 Session Ingress. |
| 500 | */ |
| 501 | export function setInternalEventWriter(writer: InternalEventWriter): void { |
| 502 | getProject().setInternalEventWriter(writer) |
| 503 | } |
| 504 | |
| 505 | type InternalEventReader = () => Promise< |
| 506 | { payload: Record<string, unknown>; agent_id?: string }[] | null |
no test coverage detected