typealias EndBehavior

declare type EndBehavior = {
    behavior: EndBehaviorType.AfterInactivity | EndBehaviorType.AfterSilence;
    duration: number;
} | {
    behavior: EndBehaviorType.Manual;
};

Union Members

{ behavior: EndBehaviorType.AfterInactivityEndBehaviorType.AfterSilence; duration: number; } { behavior: EndBehaviorType.Manual; }