UNPKG

site-ftp

Version:

Upload project file to FTP site. 上传项目文件到FTP站点。

15 lines (14 loc) 368 B
export declare namespace SiteFtp { interface SiteFtpOptions { host?: string; port?: number; username?: string; password?: string; type?: string; from?: Array<string>; to?: string; rm?: boolean | string; } export function connect(options: SiteFtpOptions): void; export {}; }