Skip to content

EscalationOutcome

type EscalationOutcome =
| {
estimatedWaitSec?: number;
queueId: string;
status: "queued";
}
| {
operatorId: string;
status: "connected";
}
| {
error: string;
status: "failed";
};