@m-ld/gateway
Version:
m-ld gateway for services
9 lines (8 loc) • 305 B
TypeScript
import { Server as RestServer } from 'restify';
import type { Gateway, Notifier } from '../server/index.js';
import type { Liquid } from 'liquidjs';
export declare function setupGatewayHttp({ gateway, notifier, liquid }: {
gateway: Gateway;
notifier: Notifier;
liquid: Liquid;
}): RestServer;