sipgateio
Version:
The official Node.js library for sipgate.io
12 lines (11 loc) • 429 B
TypeScript
import { WebhookModule, WebhookResponseInterface } from './webhook.types';
export declare const createWebhookModule: () => WebhookModule;
export declare const serverAddressesMatch: ({ headers: { host }, url }: {
headers: {
host?: string | undefined;
};
url?: string | undefined;
}, { serverAddress }: {
serverAddress: string;
}) => boolean;
export declare const WebhookResponse: WebhookResponseInterface;