UNPKG

448 BTypeScriptView Raw
1import { Nest } from './nest';
2import { FileJob } from './../job/fileJob';
3import { Environment } from "../environment/environment";
4export declare class Ftp extends Nest {
5 client: any;
6 config: {};
7 checkEvery: number;
8 checkEveryMs: number;
9 constructor(e: Environment, host: string, port?: number, username?: string, password?: string, checkEvery?: number);
10 load(): void;
11 watch(): void;
12 arrive(job: FileJob): void;
13}