UNPKG

247 BTypeScriptView Raw
1import { CustomTransportStrategy, MicroserviceOptions } from '../interfaces';
2import { Server } from './server';
3export declare class ServerFactory {
4 static create(microserviceOptions: MicroserviceOptions): Server & CustomTransportStrategy;
5}