erfan-flmngr-server-fixed
Version:
> Node.js Backend for Flmngr file manager
11 lines (10 loc) • 396 B
TypeScript
import { Actions } from "./Actions";
import { IConfig } from "./config/IConfig";
import { Req } from "./action/req/Req";
import { RespOk } from "./action/resp/RespOk";
export declare class Uploader {
protected m_actions: Actions;
protected m_config: IConfig;
constructor(config: IConfig, actions: Actions);
run(req: Req, onFinish: (resp: RespOk | any) => void): void;
}