@whook/whook
Version:
Build strong and efficient REST web services.
9 lines (8 loc) • 457 B
TypeScript
import { type LogService } from 'common-services';
import { type WhookCommandHandler } from '../types/commands.js';
export type WhookCommandsHandlersService = Record<string, WhookCommandHandler>;
export type WhookCommandsHandlersDependencies = {
log?: LogService;
} & WhookCommandsHandlersService;
declare const _default: import("knifecycle").ServiceInitializer<WhookCommandsHandlersDependencies, WhookCommandsHandlersService>;
export default _default;