UNPKG

752 BTypeScriptView Raw
1/** @module build */
2import { Factory } from 'pip-services3-components-node';
3import { Descriptor } from 'pip-services3-commons-node';
4/**
5 * Creates RPC components by their descriptors.
6 *
7 * @see [[https://pip-services3-node.github.io/pip-services3-components-node/classes/build.factory.html Factory]]
8 * @see [[HttpEndpoint]]
9 * @see [[HeartbeatRestService]]
10 * @see [[StatusRestService]]
11 */
12export declare class DefaultRpcFactory extends Factory {
13 static readonly Descriptor: Descriptor;
14 static readonly HttpEndpointDescriptor: Descriptor;
15 static readonly StatusServiceDescriptor: Descriptor;
16 static readonly HeartbeatServiceDescriptor: Descriptor;
17 /**
18 * Create a new instance of the factory.
19 */
20 constructor();
21}