UNPKG

@darlean/webservice-suite

Version:

Webservice Suite that acts as Web/API Gateway that invokes actors to serve HTTP requests

12 lines (11 loc) 469 B
/** * Suite that provides the WebService service that makes it possible to handle HTTP requests with actors. * * @packageDocumentation */ import { ActorSuite } from '@darlean/base'; import { IWebServiceCfg } from './intf'; export declare const WEBSERVICE_HOST_ACTOR = "io.darlean.WebServiceHostActor"; export * from './actor.impl'; export * from './intf'; export declare function createWebserviceSuite(config: IWebServiceCfg, appId: string): ActorSuite;