UNPKG
@configurator/ravendb
Version:
latest (5.4.8)
5.4.8
5.4.7
5.4.6
5.4.5
5.4.4
5.4.3
4.0.0-rc4
RavenDB client for Node.js
ravendb.net
ravendb/ravendb-nodejs-client
@configurator/ravendb
/
dist
/
Documents
/
Operations
/
Backups
/
FtpSettings.d.ts
10 lines
(9 loc)
•
257 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
import
{
BackupSettings
}
from
"./BackupSettings"
;
export
interface
FtpSettings
extends
BackupSettings
{
url
:
string
;
port
?:
number
;
userName
?:
string
;
password
?:
string
;
certificateAsBase64
?:
string
;
certificateFileName
?:
string
; }