Skip to content

Commit

Permalink
feat: getting ftp-srv.js match ftp-srv.d.ts
Browse files Browse the repository at this point in the history
Signed-off-by: Yonggang Luo <[email protected]>
  • Loading branch information
lygstate committed Aug 24, 2024
1 parent 89846a1 commit 611f332
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions ftp-srv.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,14 @@
const FtpSrv = require('./src');
const FtpServer = require('./src');
const FtpConnection = require('./src/connection');
const FileSystem = require('./src/fs');
const errors = require('./src/errors');

module.exports = FtpSrv;
module.exports.FtpSrv = FtpSrv;
module.exports = FtpServer;
module.exports.FtpSrv = FtpServer;
module.exports.FtpServer = FtpServer;
module.exports.FileSystem = FileSystem;
module.exports.ftpErrors = errors;
module.exports.GeneralError = errors.GeneralError;
module.exports.SocketError = errors.SocketError;
module.exports.FileSystemError = errors.FileSystemError;
module.exports.ConnectorError = errors.ConnectorError;
module.exports.FtpConnection = FtpConnection;

0 comments on commit 611f332

Please sign in to comment.