UNPKG

nestjs-basic-ftp

Version:
13 lines (12 loc) 419 B
/// <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[]; }