nestjs-ftp
Version:
Nestjs-ftp is a NestJs Module repository of basic-ftp package
11 lines (10 loc) • 347 B
TypeScript
/// <reference types="node" />
import { ConnectionOptions as TLSConnectionOptions } from "tls";
export interface IConnectionOptions {
readonly host?: string;
readonly port?: number;
readonly user?: string;
readonly password?: string;
readonly secure?: boolean | "implicit";
readonly secureOptions?: TLSConnectionOptions;
}