UNPKG

@chevre/domain

Version:

Chevre Domain Library for Node.js

10 lines (9 loc) 417 B
import * as factory from '../factory'; import type { ActionRepo } from '../repo/action'; import type { ServiceOutputRepo } from '../repo/serviceOutput'; import type { TaskRepo } from '../repo/task'; export declare function registerService(params: factory.action.interact.register.service.IAttributes[]): (repos: { action: ActionRepo; serviceOutput: ServiceOutputRepo; task: TaskRepo; }) => Promise<void>;