UNPKG

@chevre/domain

Version:

Chevre Domain Library for Node.js

15 lines (14 loc) 513 B
import * as factory from '../../factory'; import type { ActionRepo } from '../../repo/action'; import type { PotentialActionRepo } from '../../repo/potentialAction'; import type { SettingRepo } from '../../repo/setting'; declare function triggerWebhook(params: factory.task.IData<factory.taskName.TriggerWebhook> & { project: { id: string; }; }): (repos: { action: ActionRepo; potentialAction: PotentialActionRepo; setting: SettingRepo; }) => Promise<void>; export { triggerWebhook };