@whook/whook
Version:
Build strong and efficient REST web services.
14 lines (13 loc) • 393 B
TypeScript
import { type ImporterService, type LogService } from 'common-services';
declare const _default: import("knifecycle").ServiceInitializer<{
ENV?: WhookHostEnv;
log?: LogService;
importer: ImporterService<{
internalIpV4: () => Promise<string>;
}>;
}, string>;
export default _default;
export type WhookHost = string;
export type WhookHostEnv = {
HOST?: WhookHost;
};