manifest
Version:
The backend for AI code editors
12 lines (11 loc) • 398 B
TypeScript
import { UploadService } from '../services/upload.service';
export declare class UploadController {
private readonly uploadService;
constructor(uploadService: UploadService);
uploadFile(file: any, entity: string, property: string): Promise<{
path: string;
}>;
uploadImage(image: any, entity: string, property: string): Promise<{
[key: string]: string;
}>;
}