shanurrahman-gcsns

Results 7 comments of shanurrahman-gcsns

`switching the config param "interfaceWithRoute" to false, the menu started working ` verified and its true

> This shouldn't be closed. I encountered a similar issue today, it's not possible to have two separate `@UploadedFile` - in case we want to get them by field name...

can you check if your type definitions are correct for your multer package, looks like you are trying a default export. try something like this `import {something} from "sompackage";` instead...

> My multer version is 1.4.2. If you know what version you were on then I can probably downgrade. Running Node12 atm I was also on multer 1.4.2. This should...

> I'm attempting both transpiling and running with ts-node, and have tried both Node 12 and 14. I'll give it a try without the multer typings Can you share your...

```ts function Multer (options) { if (options.storage) { this.storage = options.storage } else if (options.dest) { this.storage = diskStorage({ destination: options.dest }) } else { this.storage = memoryStorage() } this.limits...

> So I've just imported it by doing > > ```ts > const multer = require("multer"); > ``` > > and that's now working fine... sorry @MerrickKing I was gone...