feat(typings): removed Server extension for FtpServer

This commit is contained in:
Ozair Patel
2017-10-17 17:25:36 -05:00
committed by Tyler Stewart
parent fae5564041
commit 7589322abc

3
ftp-srv.d.ts vendored
View File

@@ -1,6 +1,5 @@
import * as tls from 'tls'
import { Stats } from 'fs'
import { Server } from 'net'
declare class FileSystem {
constructor(connection: any, {root, cwd}?: {
@@ -64,7 +63,7 @@ interface FtpServerOptions {
log: any
}
declare class FtpServer extends Server {
declare class FtpServer {
constructor(url: string, options?: FtpServerOptions);
readonly isTLS: boolean;