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