UNPKG

@whook/whook

Version:

Build strong and efficient REST web services.

11 lines (10 loc) 421 B
import { type LogService } from 'common-services'; import { type WhookHandlerWrapper } from '../index.js'; export type WhookMainHandlerDependencies<T> = { WRAPPERS: WhookHandlerWrapper<T>[]; MAIN_WRAPPER: WhookHandlerWrapper<T>; BASE_HANDLER: T; log?: LogService; }; declare const _default: import("knifecycle").ServiceInitializer<WhookMainHandlerDependencies<unknown>, unknown>; export default _default;