sip.js
Version:
A SIP library for JavaScript
17 lines (16 loc) • 451 B
TypeScript
import { OutgoingRequestDelegate, RequestOptions } from "../core/messages/outgoing-request.js";
/**
* Options for {@link Registerer.unregister}.
* @public
*/
export interface RegistererUnregisterOptions {
/**
* If true, unregister all contacts.
* @defaultValue false
*/
all?: boolean;
/** See `core` API. */
requestDelegate?: OutgoingRequestDelegate;
/** See `core` API. */
requestOptions?: RequestOptions;
}