typealias EndBehavior

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

Union Members

{ behavior: EndBehaviorType.Manual; } { behavior: EndBehaviorType.AfterSilenceEndBehaviorType.AfterInactivity; duration: number; }