erfan-flmngr-server-fixed
Version:
> Node.js Backend for Flmngr file manager
20 lines (19 loc) • 538 B
TypeScript
/// <reference types="express-serve-static-core" />
import express from 'express';
export declare function bindFlmngr(config: {
app: express.Express;
url: string;
dir: string;
config?: {
[key: string]: string;
};
}): void;
export interface FlmngrMicroserviceConfig {
host?: string;
port?: number;
url?: string;
dirRoot?: string;
dirFiles: string;
config?: any;
}
export declare function startFlmngrMicroservice(config: FlmngrMicroserviceConfig): Express.Application;