13 lines
219 B
TypeScript
13 lines
219 B
TypeScript
|
|
/**
|
||
|
|
* Webhook Integration Module
|
||
|
|
*
|
||
|
|
* Push events to external URLs via HTTP POST.
|
||
|
|
* Works in all environments.
|
||
|
|
*/
|
||
|
|
|
||
|
|
export {
|
||
|
|
WebhookIntegration,
|
||
|
|
integration,
|
||
|
|
type WebhookConfig
|
||
|
|
} from './WebhookIntegration.js'
|