nestjs-basic-ftp
Version:
Simple 'basic-ftp' wrapper for NestJs
13 lines (12 loc) • 419 B
TypeScript
/// <reference types="node" />
import { ConnectionOptions as TLSConnectionOptions } from 'tls';
export interface IFTPOptions {
readonly host?: string;
readonly port?: number;
readonly user?: string;
readonly password?: string;
readonly secure?: boolean | 'implicit';
readonly secureOptions?: TLSConnectionOptions;
readonly verbose?: boolean;
readonly availableListCommands?: string[];
}