Interface KeplerLinkedStateDiagnosticExperimental

interface KeplerLinkedStateDiagnostic {
    channel: KeplerLinkedStateChannel;
    detail: string;
    direction: KeplerLinkedStateDirection;
    outcome:
        | "unsupported"
        | "applied"
        | "lossy"
        | "echo-suppressed";
}

Properties

detail: string
outcome:
    | "unsupported"
    | "applied"
    | "lossy"
    | "echo-suppressed"