@minimaltech/node-infra
Version:
Minimal Technology NodeJS Infrastructure - Loopback 4 Framework
15 lines (14 loc) • 627 B
TypeScript
import { BaseApplication } from '../../../base/applications';
import { IController } from '../../../common';
import { ApplicationLogger } from '../../../helpers';
import { Request, Response } from '@loopback/rest';
export declare class StaticResourceController implements IController {
protected application: BaseApplication;
private request;
private response;
protected logger: ApplicationLogger;
private temporaryStorage;
constructor(application: BaseApplication, request: Request, response: Response);
uploadObject(): Promise<unknown>;
downloadObject(objectName: string): Promise<unknown>;
}