UNPKG

sip.js

Version:

A SIP library for JavaScript

13 lines (12 loc) 353 B
import { Notification } from "./notification.js"; /** * Delegate for {@link Subscription}. * @public */ export interface SubscriptionDelegate { /** * Called upon receiving an incoming NOTIFY request. * @param notification - A notification. See {@link Notification} for details. */ onNotify(notification: Notification): void; }