UNPKG

sfp-bp-deploy

Version:

quick upload file to server

16 lines (15 loc) 308 B
interface Server { host: string; port?: number; username: string; password?: string; privateKey?: string; } export interface Config { copyPath: string; localDir: string; remoteDir: string; server: Server; } export default function (serverConfig: Config): void; export {};