UNPKG

312 BTypeScriptView Raw
1import { Environment } from "../environment/environment";
2import { Nest } from './nest';
3import { FileJob } from './../job/fileJob';
4export declare class Folder extends Nest {
5 path: string;
6 constructor(e: Environment, path: string);
7 load(): void;
8 watch(): void;
9 arrive(job: FileJob): void;
10}