(writer: InternalEventWriter)
| 535 | * instead of going through v1 Session Ingress. |
| 536 | */ |
| 537 | export function setInternalEventWriter(writer: InternalEventWriter): void { |
| 538 | getProject().setInternalEventWriter(writer) |
| 539 | } |
| 540 | |
| 541 | type InternalEventReader = () => Promise< |
| 542 | { payload: Record<string, unknown>; agent_id?: string }[] | null |
no test coverage detected