UNPKG

@whook/whook

Version:

Build strong and efficient REST web services.

9 lines (8 loc) 386 B
import { type LogService } from 'common-services'; import { type JsonValue } from 'type-fest'; export type WhookAPMDependencies = { log: LogService; }; export type WhookAPMService<T extends string = string> = (type: T, data: JsonValue) => void; declare const _default: import("knifecycle").ServiceInitializer<WhookAPMDependencies, WhookAPMService<string>>; export default _default;