Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Bower components Debian packages RPM packages NuGet packages

sentry / @nestjs/microservices   js

Repository URL to install this package:

Version: 7.0.10 

/ client / client-proxy-factory.d.ts

import { Transport } from '../enums/transport.enum';
import { ClientOptions } from '../interfaces/client-metadata.interface';
import { Closeable } from '../interfaces/closeable.interface';
import { ClientGrpcProxy } from './client-grpc';
import { ClientProxy } from './client-proxy';
export interface IClientProxyFactory {
    create(clientOptions: ClientOptions): ClientProxy & Closeable;
}
export declare class ClientProxyFactory {
    static create(clientOptions: {
        transport: Transport.GRPC;
    } & ClientOptions): ClientGrpcProxy;
    static create(clientOptions: ClientOptions): ClientProxy & Closeable;
}