mirror of
https://github.com/EvolutionAPI/evolution-api.git
synced 2025-12-19 03:42:23 -06:00
10 lines
135 B
TypeScript
10 lines
135 B
TypeScript
import { Multer } from 'multer';
|
|
|
|
declare global {
|
|
namespace Express {
|
|
interface Request {
|
|
file?: Multer.File;
|
|
}
|
|
}
|
|
}
|