/** * Represents parameters for hanging up a call. */ type HangupCallParameters = { /** * The action indicating that the call should be hung up. */ action: 'hangup'; }; export type { HangupCallParameters };