Interface: IFTPClientConfig
ftp-client/src.IFTPClientConfig
Extends
AccessOptions
Properties
connectOnStartup
connectOnStartup?:
boolean
Source
libs/ftp-client/src/lib/config/ftp-client-config.interface.ts:5
host
readonly
host?:string
Host the client should connect to. Optional, default is "localhost".
Inherited from
AccessOptions.host
Source
node_modules/basic-ftp/dist/Client.d.ts:11
password
readonly
password?:string
Password to use for login. Optional, default is "guest".
Inherited from
AccessOptions.password
Source
node_modules/basic-ftp/dist/Client.d.ts:17
port
readonly
port?:number
Port the client should connect to. Optional, default is 21.
Inherited from
AccessOptions.port
Source
node_modules/basic-ftp/dist/Client.d.ts:13
secure
readonly
secure?:boolean
|"implicit"
Use FTPS over TLS. Optional, default is false. True is preferred explicit TLS, "implicit" supports legacy, non-standardized implicit TLS.
Inherited from
AccessOptions.secure
Source
node_modules/basic-ftp/dist/Client.d.ts:19
secureOptions
readonly
secureOptions?:ConnectionOptions
TLS options as in tls.connect(options), optional.
Inherited from
AccessOptions.secureOptions
Source
node_modules/basic-ftp/dist/Client.d.ts:21
timeout
timeout?:
number
Source
libs/ftp-client/src/lib/config/ftp-client-config.interface.ts:4
user
readonly
user?:string
Username to use for login. Optional, default is "anonymous".
Inherited from
AccessOptions.user
Source
node_modules/basic-ftp/dist/Client.d.ts:15
Generated using typedoc-plugin-markdown and TypeDoc