UNPKG

@minimaltech/node-infra

Version:

Minimal Technology NodeJS Infrastructure - Loopback 4 Framework

7 lines (6 loc) 444 B
import { Server, TLSSocket as SocketClient, TlsOptions } from 'node:tls'; import { BaseNetworkTcpServer, ITcpSocketServerOptions } from './base-tcp-server.helper'; export declare class NetworkTlsTcpServer extends BaseNetworkTcpServer<TlsOptions, Server, SocketClient> { constructor(opts: Omit<ITcpSocketServerOptions, 'createServerFn'>); static newInstance(opts: Omit<ITcpSocketServerOptions, 'createServerFn'>): NetworkTlsTcpServer; }