bizmatch-project/bizmatch-server/dist/account/account.controller.d.ts

8 lines
260 B
TypeScript

/// <reference types="multer" />
import { FileService } from '../file/file.service.js';
export declare class AccountController {
private fileService;
constructor(fileService: FileService);
uploadFile(file: Express.Multer.File, id: string): void;
}