(options: Options)
| 57 | return { |
| 58 | multer, |
| 59 | get(options: Options) { |
| 60 | const instance = multer(options); |
| 61 | |
| 62 | makePromise(instance, "any"); |
| 63 | makePromise(instance, "array"); |
| 64 | makePromise(instance, "fields"); |
| 65 | makePromise(instance, "none"); |
| 66 | makePromise(instance, "single"); |
| 67 | |
| 68 | return instance; |
| 69 | } |
| 70 | }; |
| 71 | } |
| 72 |
no test coverage detected